TASKPM/libreplan-business/pom.xml

232 lines
7.4 KiB
XML
Raw Permalink Normal View History

<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/maven-v4_0_0.xsd">
2009-04-14 17:51:03 +02:00
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.libreplan</groupId>
<artifactId>libreplan</artifactId>
<version>1.6.0</version>
2009-04-14 17:51:03 +02:00
</parent>
<artifactId>libreplan-business</artifactId>
2009-04-14 17:51:03 +02:00
<packaging>jar</packaging>
<name>TASKPM Business Module</name>
2009-04-14 17:51:03 +02:00
<dependencies>
<!-- Gettext commons -->
<dependency>
<groupId>com.googlecode.gettext-commons</groupId>
<artifactId>gettext-commons</artifactId>
</dependency>
<!-- Spring ORM -->
2009-04-14 17:51:03 +02:00
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
</dependency>
<!-- Hibernate -->
2009-04-14 17:51:03 +02:00
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
2009-04-14 17:51:03 +02:00
</dependency>
<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>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
2009-04-14 17:51:03 +02:00
</dependency>
<!-- Javax EL -->
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.el</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>3.0.0</version>
</dependency>
<!-- Javax Annotation API (for @PostConstruct, removed from JDK 11+) -->
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
<!-- Usertype.Core -->
<dependency>
2014-05-01 16:36:02 +02:00
<groupId>org.jadira.usertype</groupId>
<artifactId>usertype.core</artifactId>
</dependency>
<!-- JDBC driver -->
2009-04-14 17:51:03 +02:00
<dependency>
<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>
<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>
</dependency>
<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
</dependency>
2014-05-01 16:36:02 +02:00
<!-- AspectJWeaver -->
<dependency>
2014-04-28 01:01:24 +02:00
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
</dependency>
<!-- JUnit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<!-- Datasource for testing -->
2014-04-28 01:01:24 +02:00
<dependency>
<groupId>com.jolbox</groupId>
<artifactId>bonecp</artifactId>
2014-04-28 01:01:24 +02:00
</dependency>
<!-- Spring Test -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
</dependency>
<!-- 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>
<!-- Commons Math-->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
</dependency>
<!-- Commons Lang -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
</dependency>
<!-- Log4j -->
2014-04-28 01:01:24 +02:00
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</dependency>
<!-- Joda Time -->
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
</dependency>
<!-- Liquibase -->
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
</dependency>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-maven-plugin</artifactId>
</dependency>
2009-04-14 17:51:03 +02:00
</dependencies>
<profiles>
<profile>
<!-- LiquiBase liquibase:update -->
<id>liquibase-update</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-maven-plugin</artifactId>
<version>3.5.1</version>
<executions>
<execution>
<phase>process-resources</phase>
<configuration>
<propertyFileWillOverride>true</propertyFileWillOverride>
<propertyFile>target/classes/liquibase.properties</propertyFile>
</configuration>
<goals>
<goal>update</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!-- LiquiBase liquibase:updateSQL -->
<id>liquibase-updatesql</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-maven-plugin</artifactId>
<version>3.5.1</version>
<executions>
<execution>
<phase>process-resources</phase>
<configuration>
<propertyFileWillOverride>false</propertyFileWillOverride>
<propertyFile>target/classes/liquibase.properties</propertyFile>
</configuration>
<goals>
<goal>updateSQL</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<!-- Filtering -->
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
</project>