Created
August 6, 2011 09:28
-
-
Save fabiokung/1129219 to your computer and use it in GitHub Desktop.
slightly modified version from lift maven archetype version, in order to work with older mvn (2.0.8)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project xmlns="http://maven.apache.org/POM/4.0.0" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>com.fabiokung</groupId> | |
| <artifactId>lift_heroku</artifactId> | |
| <version>0.1.0</version> | |
| <packaging>war</packaging> | |
| <name>lift_heroku Project</name> | |
| <inceptionYear>2010</inceptionYear> | |
| <properties> | |
| <scala.version>2.8.1</scala.version> | |
| <!-- Common plugin settings --> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| <project.reporting.outputEncoding>${project.build.sourceEncoding}</project.reporting.outputEncoding> | |
| <!-- vscaladoc settings --> | |
| <maven.scaladoc.vscaladocVersion>1.2-m1</maven.scaladoc.vscaladocVersion> | |
| <vscaladoc.links.liftweb.pathsufix>scaladocs/</vscaladoc.links.liftweb.pathsufix> | |
| <vscaladoc.links.liftweb.baseurl>http://scala-tools.org/mvnsites/liftweb</vscaladoc.links.liftweb.baseurl> | |
| </properties> | |
| <repositories> | |
| <repository> | |
| <id>scala-tools.releases</id> | |
| <name>Scala-Tools Dependencies Repository for Releases</name> | |
| <url>http://scala-tools.org/repo-releases</url> | |
| </repository> | |
| </repositories> | |
| <pluginRepositories> | |
| <pluginRepository> | |
| <id>scala-tools.releases</id> | |
| <name>Scala-Tools Plugins Repository for Releases</name> | |
| <url>http://scala-tools.org/repo-releases</url> | |
| </pluginRepository> | |
| </pluginRepositories> | |
| <dependencies> | |
| <dependency> | |
| <groupId>net.liftweb</groupId> | |
| <artifactId>lift-mapper_2.8.1</artifactId> | |
| <version>2.3</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>ch.qos.logback</groupId> | |
| <artifactId>logback-classic</artifactId> | |
| <version>0.9.26</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.h2database</groupId> | |
| <artifactId>h2</artifactId> | |
| <version>1.2.138</version> | |
| <scope>runtime</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>javax.servlet</groupId> | |
| <artifactId>servlet-api</artifactId> | |
| <version>2.5</version> | |
| <scope>provided</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>junit</groupId> | |
| <artifactId>junit</artifactId> | |
| <version>4.7</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.scala-tools.testing</groupId> | |
| <artifactId>specs_2.8.1</artifactId> | |
| <version>1.6.6</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.mortbay.jetty</groupId> | |
| <artifactId>jetty</artifactId> | |
| <version>6.1.25</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <!-- for LiftConsole --> | |
| <dependency> | |
| <groupId>org.scala-lang</groupId> | |
| <artifactId>scala-compiler</artifactId> | |
| <version>${scala.version}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| </dependencies> | |
| <build> | |
| <sourceDirectory>src/main/scala</sourceDirectory> | |
| <testSourceDirectory>src/test/scala</testSourceDirectory> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.scala-tools</groupId> | |
| <artifactId>maven-scala-plugin</artifactId> | |
| <version>2.13.1</version> | |
| <configuration> | |
| <charset>${project.build.sourceEncoding}</charset> | |
| <jvmArgs> | |
| <jvmArg>-Xmx1024m</jvmArg> | |
| <jvmArg>-DpackageLinkDefs=file://${project.build.directory}/packageLinkDefs.properties</jvmArg> | |
| </jvmArgs> | |
| </configuration> | |
| <executions> | |
| <execution> | |
| <goals> | |
| <goal>compile</goal> | |
| <goal>testCompile</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-resources-plugin</artifactId> | |
| <version>2.4.2</version> | |
| <executions> | |
| <execution> | |
| <id>default-copy-resources</id> | |
| <phase>process-resources</phase> | |
| <goals> | |
| <goal>copy-resources</goal> | |
| </goals> | |
| <configuration> | |
| <overwrite>true</overwrite> | |
| <outputDirectory>${project.build.directory}</outputDirectory> | |
| <resources> | |
| <resource> | |
| <directory>${project.basedir}/src</directory> | |
| <includes> | |
| <include>packageLinkDefs.properties</include> | |
| </includes> | |
| <filtering>true</filtering> | |
| </resource> | |
| </resources> | |
| </configuration> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.mortbay.jetty</groupId> | |
| <artifactId>maven-jetty-plugin</artifactId> | |
| <version>6.1.25</version> | |
| <configuration> | |
| <contextPath>/</contextPath> | |
| <scanIntervalSeconds>5</scanIntervalSeconds> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>net.sf.alchim</groupId> | |
| <artifactId>yuicompressor-maven-plugin</artifactId> | |
| <version>0.7.1</version> | |
| <executions> | |
| <execution> | |
| <goals> | |
| <goal>compress</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| <configuration> | |
| <nosuffix>true</nosuffix> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-idea-plugin</artifactId> | |
| <version>2.2</version> | |
| <configuration> | |
| <downloadSources>true</downloadSources> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-eclipse-plugin</artifactId> | |
| <version>2.7</version> | |
| <configuration> | |
| <downloadSources>true</downloadSources> | |
| <additionalProjectnatures> | |
| <projectnature>ch.epfl.lamp.sdt.core.scalanature</projectnature> | |
| </additionalProjectnatures> | |
| <additionalBuildcommands> | |
| <buildcommand>ch.epfl.lamp.sdt.core.scalabuilder</buildcommand> | |
| </additionalBuildcommands> | |
| <classpathContainers> | |
| <classpathContainer>ch.epfl.lamp.sdt.launching.SCALA_CONTAINER</classpathContainer> | |
| <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer> | |
| </classpathContainers> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| <reporting> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.scala-tools</groupId> | |
| <artifactId>maven-scala-plugin</artifactId> | |
| <version>2.14.3</version> | |
| <configuration> | |
| <charset>${project.build.sourceEncoding}</charset> | |
| <jvmArgs> | |
| <jvmArg>-Xmx1024m</jvmArg> | |
| <jvmArg>-DpackageLinkDefs=file://${project.build.directory}/packageLinkDefs.properties</jvmArg> | |
| </jvmArgs> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </reporting> | |
| </project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment