2011-10-16 13:40:36 +00:00
|
|
|
<?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.tesobe</groupId>
|
2012-01-23 14:45:47 +00:00
|
|
|
<artifactId>opan_bank</artifactId>
|
2011-10-16 13:40:36 +00:00
|
|
|
<version>1.0</version>
|
|
|
|
|
<packaging>war</packaging>
|
2012-01-23 14:45:47 +00:00
|
|
|
<name>Opan Bank</name>
|
|
|
|
|
<inceptionYear>2011</inceptionYear>
|
2011-10-16 13:40:36 +00:00
|
|
|
<properties>
|
|
|
|
|
<scala.version>2.9.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>
|
2012-11-27 16:07:28 +00:00
|
|
|
<repository>
|
2011-10-16 13:40:36 +00:00
|
|
|
<id>scala-tools.snapshots</id>
|
|
|
|
|
<name>Scala-Tools Dependencies Repository for Snapshots</name>
|
|
|
|
|
<url>http://scala-tools.org/repo-snapshots</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.9.1</artifactId>
|
|
|
|
|
<version>2.4-M4</version>
|
|
|
|
|
</dependency>
|
2012-03-02 17:06:57 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.liftweb</groupId>
|
|
|
|
|
<artifactId>lift-widgets_2.9.1</artifactId>
|
|
|
|
|
<version>2.4-M4</version>
|
|
|
|
|
</dependency>
|
2012-07-20 08:50:02 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.databinder</groupId>
|
|
|
|
|
<artifactId>dispatch-http_${scala.version}</artifactId>
|
|
|
|
|
<version>0.8.6</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.databinder</groupId>
|
|
|
|
|
<artifactId>dispatch-oauth_${scala.version}</artifactId>
|
|
|
|
|
<version>0.8.6</version>
|
|
|
|
|
</dependency>
|
2011-10-16 13:40:36 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
|
<version>0.9.26</version>
|
|
|
|
|
</dependency>
|
2012-04-17 13:46:43 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>postgresql</groupId>
|
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
|
<version>8.4-701.jdbc4</version>
|
|
|
|
|
</dependency>
|
2011-10-16 13:40:36 +00:00
|
|
|
<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>
|
2012-01-23 14:45:47 +00:00
|
|
|
<artifactId>specs_2.9.1</artifactId>
|
|
|
|
|
<version>1.6.9</version>
|
2011-10-16 13:40:36 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
|
<artifactId>jetty</artifactId>
|
|
|
|
|
<version>6.1.25</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2012-11-26 17:28:19 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
2012-11-27 15:23:14 +00:00
|
|
|
<artifactId>bcpg-jdk16</artifactId>
|
2012-11-26 17:28:19 +00:00
|
|
|
<version>1.46</version>
|
|
|
|
|
</dependency>
|
2011-10-16 13:40:36 +00:00
|
|
|
<!-- for LiftConsole -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.scala-lang</groupId>
|
|
|
|
|
<artifactId>scala-compiler</artifactId>
|
|
|
|
|
<version>${scala.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2012-11-27 16:07:28 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.liftweb</groupId>
|
|
|
|
|
<artifactId>lift-mongodb_2.9.1</artifactId>
|
|
|
|
|
<version>2.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.liftweb</groupId>
|
|
|
|
|
<artifactId>lift-mongodb-record_2.9.1</artifactId>
|
|
|
|
|
<version>2.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mongodb</groupId>
|
|
|
|
|
<artifactId>casbah_${scala.version}</artifactId>
|
|
|
|
|
<version>2.3.0</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
<type>pom</type>
|
2011-10-16 13:40:36 +00:00
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
2012-11-27 15:23:14 +00:00
|
|
|
<sourceDirectory>src/main</sourceDirectory>
|
2011-10-16 13:40:36 +00:00
|
|
|
<testSourceDirectory>src/test/scala</testSourceDirectory>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.scala-tools</groupId>
|
|
|
|
|
<artifactId>maven-scala-plugin</artifactId>
|
2012-11-27 16:07:28 +00:00
|
|
|
<version>2.9</version>
|
2011-10-16 13:40:36 +00:00
|
|
|
<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>
|
2012-12-01 01:33:05 +00:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
|
<version>2.1.1</version>
|
|
|
|
|
</plugin>
|
2011-10-16 13:40:36 +00:00
|
|
|
<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>
|
2012-10-19 15:25:00 +00:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
|
<artifactId>maven-jetty-plugin</artifactId>
|
|
|
|
|
<version>6.1.25</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<contextPath>/</contextPath>
|
|
|
|
|
<scanIntervalSeconds>5</scanIntervalSeconds>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2011-10-16 13:40:36 +00:00
|
|
|
<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>
|
2012-12-10 11:31:58 +00:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>pl.project13.maven</groupId>
|
|
|
|
|
<artifactId>git-commit-id-plugin</artifactId>
|
|
|
|
|
<version>2.1.0</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>revision</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
|
|
|
|
|
<generateGitPropertiesFile>true</generateGitPropertiesFile>
|
|
|
|
|
<generateGitPropertiesFilename>src/main/resources/git.properties</generateGitPropertiesFilename>
|
|
|
|
|
<failOnNoGitDirectory>false</failOnNoGitDirectory>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2011-10-16 13:40:36 +00:00
|
|
|
</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>
|