2009-05-06 19:36:37 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2009-04-14 17:51:03 +02:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2009-05-06 19:36:37 +02:00
|
|
|
|
2009-04-14 17:51:03 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
2011-10-28 08:17:54 +02:00
|
|
|
<groupId>org.libreplan</groupId>
|
|
|
|
|
<artifactId>libreplan</artifactId>
|
2016-04-27 11:10:08 +03:00
|
|
|
<version>1.6.0</version>
|
2009-04-14 17:51:03 +02:00
|
|
|
</parent>
|
2011-10-28 08:17:54 +02:00
|
|
|
<artifactId>libreplan-business</artifactId>
|
2009-04-14 17:51:03 +02:00
|
|
|
<packaging>jar</packaging>
|
2011-10-28 08:17:54 +02:00
|
|
|
<name>LibrePlan Business Module</name>
|
2009-05-06 19:36:37 +02:00
|
|
|
|
2009-04-14 17:51:03 +02:00
|
|
|
<dependencies>
|
2009-11-12 17:54:51 +01:00
|
|
|
<!-- Gettext commons -->
|
|
|
|
|
<dependency>
|
2016-05-13 17:01:29 +03:00
|
|
|
<groupId>com.googlecode.gettext-commons</groupId>
|
2009-11-12 17:54:51 +01:00
|
|
|
<artifactId>gettext-commons</artifactId>
|
|
|
|
|
</dependency>
|
2014-05-01 00:41:57 +02:00
|
|
|
|
2016-05-05 14:13:00 +03:00
|
|
|
<!-- Spring ORM -->
|
2009-04-14 17:51:03 +02:00
|
|
|
<dependency>
|
2014-05-01 00:41:57 +02:00
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-orm</artifactId>
|
2009-05-04 19:44:34 +02:00
|
|
|
</dependency>
|
2016-05-05 14:13:00 +03:00
|
|
|
|
|
|
|
|
<!-- Hibernate -->
|
2009-04-14 17:51:03 +02:00
|
|
|
<dependency>
|
2014-05-01 00:41:57 +02:00
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate-core</artifactId>
|
2009-04-14 17:51:03 +02:00
|
|
|
</dependency>
|
2016-05-05 14:13:00 +03:00
|
|
|
<dependency>
|
2014-05-01 16:36:02 +02:00
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate-ehcache</artifactId>
|
|
|
|
|
</dependency>
|
2009-04-14 17:51:03 +02:00
|
|
|
<dependency>
|
2014-05-01 00:41:57 +02:00
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
2009-04-14 17:51:03 +02:00
|
|
|
</dependency>
|
2014-05-01 00:41:57 +02:00
|
|
|
|
2016-05-24 16:55:13 +03:00
|
|
|
<!-- Javax EL -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.el</groupId>
|
|
|
|
|
<artifactId>javax.el-api</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2016-05-05 14:13:00 +03:00
|
|
|
<!-- Usertype.Core -->
|
2010-03-25 23:02:11 +01:00
|
|
|
<dependency>
|
2014-05-01 16:36:02 +02:00
|
|
|
<groupId>org.jadira.usertype</groupId>
|
|
|
|
|
<artifactId>usertype.core</artifactId>
|
2010-03-25 23:02:11 +01:00
|
|
|
</dependency>
|
2014-05-01 00:41:57 +02:00
|
|
|
|
|
|
|
|
<!-- JDBC driver -->
|
2009-04-14 17:51:03 +02:00
|
|
|
<dependency>
|
2014-05-01 00:41:57 +02:00
|
|
|
<groupId>${jdbcDriver.groupId}</groupId>
|
|
|
|
|
<artifactId>${jdbcDriver.artifactId}</artifactId>
|
2014-05-01 16:36:02 +02:00
|
|
|
<scope>test</scope>
|
2009-04-14 17:51:03 +02:00
|
|
|
</dependency>
|
2014-05-01 00:41:57 +02:00
|
|
|
<dependency>
|
2014-05-01 16:36:02 +02:00
|
|
|
<groupId>org.jboss.spec.javax.transaction</groupId>
|
2016-05-05 16:35:17 +03:00
|
|
|
<artifactId>jboss-transaction-api_1.2_spec</artifactId>
|
2014-05-01 00:41:57 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Spring -->
|
2010-03-16 12:30:21 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
2014-05-01 00:41:57 +02:00
|
|
|
<artifactId>spring-context-support</artifactId>
|
2010-03-16 12:30:21 +01:00
|
|
|
</dependency>
|
2014-05-01 16:36:02 +02:00
|
|
|
|
2016-05-05 14:13:00 +03:00
|
|
|
<!-- AspectJWeaver -->
|
2009-05-06 19:36:37 +02:00
|
|
|
<dependency>
|
2014-04-28 01:01:24 +02:00
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
|
|
<artifactId>aspectjweaver</artifactId>
|
2009-05-06 19:36:37 +02:00
|
|
|
</dependency>
|
2014-05-01 00:41:57 +02:00
|
|
|
|
|
|
|
|
<!-- JUnit -->
|
2009-05-14 17:16:01 +02:00
|
|
|
<dependency>
|
2014-05-01 00:41:57 +02:00
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
2009-08-10 12:11:29 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2014-05-01 00:41:57 +02:00
|
|
|
<!-- datasource for testing -->
|
2014-04-28 01:01:24 +02:00
|
|
|
<dependency>
|
2014-05-01 00:41:57 +02:00
|
|
|
<groupId>com.jolbox</groupId>
|
|
|
|
|
<artifactId>bonecp</artifactId>
|
2014-04-28 01:01:24 +02:00
|
|
|
</dependency>
|
2014-05-01 00:41:57 +02:00
|
|
|
|
2016-05-05 14:13:00 +03:00
|
|
|
<!-- Spring Test -->
|
2014-05-01 00:41:57 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2016-05-05 14:13:00 +03:00
|
|
|
<!-- Easymock -->
|
2014-04-28 01:01:24 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
|
<artifactId>easymock</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
|
<artifactId>easymockclassextension</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2014-05-01 00:41:57 +02:00
|
|
|
|
2010-01-25 00:38:33 +01:00
|
|
|
<!-- Commons Math-->
|
|
|
|
|
<dependency>
|
2016-05-05 14:13:00 +03:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-math3</artifactId>
|
2010-01-25 00:38:33 +01:00
|
|
|
</dependency>
|
2016-05-05 14:13:00 +03:00
|
|
|
|
2016-05-24 16:55:13 +03:00
|
|
|
<!-- Commons Lang -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2016-05-05 14:13:00 +03:00
|
|
|
<!-- Log4j -->
|
2014-04-28 01:01:24 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2009-06-24 12:24:07 +02:00
|
|
|
<!-- Joda Time -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
|
</dependency>
|
2014-05-01 00:41:57 +02:00
|
|
|
|
2016-05-05 14:13:00 +03:00
|
|
|
<!-- DBUnit -->
|
2009-09-27 22:21:49 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.dbunit</groupId>
|
|
|
|
|
<artifactId>dbunit</artifactId>
|
|
|
|
|
</dependency>
|
2016-05-05 14:13:00 +03:00
|
|
|
|
|
|
|
|
<!-- Liquibase -->
|
2010-11-24 17:00:07 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
|
<artifactId>liquibase-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
|
<artifactId>liquibase-maven-plugin</artifactId>
|
|
|
|
|
</dependency>
|
2016-05-24 16:55:13 +03:00
|
|
|
|
2009-04-14 17:51:03 +02:00
|
|
|
</dependencies>
|
2010-11-24 17:00:07 +01:00
|
|
|
|
2010-12-13 09:48:11 +01:00
|
|
|
<profiles>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2016-05-24 16:55:13 +03:00
|
|
|
<profile>
|
2010-12-13 09:48:11 +01:00
|
|
|
<!-- LiquiBase liquibase:update -->
|
2016-05-24 16:55:13 +03:00
|
|
|
<id>liquibase-update</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
|
<artifactId>liquibase-maven-plugin</artifactId>
|
2016-05-13 17:01:29 +03:00
|
|
|
<version>3.5.1</version>
|
2010-12-13 09:48:11 +01:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
|
<configuration>
|
|
|
|
|
<propertyFileWillOverride>true</propertyFileWillOverride>
|
|
|
|
|
<propertyFile>target/classes/liquibase.properties</propertyFile>
|
|
|
|
|
</configuration>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>update</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2016-05-24 16:55:13 +03:00
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2016-05-24 16:55:13 +03:00
|
|
|
<profile>
|
2010-12-13 11:21:01 +01:00
|
|
|
<!-- LiquiBase liquibase:updateSQL -->
|
2016-05-24 16:55:13 +03:00
|
|
|
<id>liquibase-updatesql</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
|
<artifactId>liquibase-maven-plugin</artifactId>
|
2016-05-13 17:01:29 +03:00
|
|
|
<version>3.5.1</version>
|
2010-12-13 11:21:01 +01:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
|
<configuration>
|
|
|
|
|
<propertyFileWillOverride>false</propertyFileWillOverride>
|
|
|
|
|
<propertyFile>target/classes/liquibase.properties</propertyFile>
|
|
|
|
|
</configuration>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>updateSQL</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2016-05-24 16:55:13 +03:00
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
|
2010-12-13 09:48:11 +01:00
|
|
|
</profiles>
|
|
|
|
|
|
2010-11-24 17:00:07 +01:00
|
|
|
<build>
|
|
|
|
|
<!-- Filtering -->
|
|
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
|
|
|
|
</build>
|
2009-11-12 17:54:51 +01:00
|
|
|
</project>
|