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-05-14 17:16:01 +02:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2011-10-28 08:17:54 +02:00
|
|
|
<groupId>org.libreplan</groupId>
|
|
|
|
|
<artifactId>libreplan</artifactId>
|
2009-05-14 17:16:01 +02:00
|
|
|
<packaging>pom</packaging>
|
2012-04-19 12:54:13 +02:00
|
|
|
<version>1.2.3</version>
|
2011-10-28 08:17:54 +02:00
|
|
|
<name>LibrePlan</name>
|
2009-05-14 17:16:01 +02:00
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
===================================================================
|
|
|
|
|
-->
|
|
|
|
|
<!-- Modules -->
|
|
|
|
|
<modules>
|
2011-10-28 08:17:54 +02:00
|
|
|
<module>libreplan-business</module>
|
2009-08-13 17:23:12 +02:00
|
|
|
<module>ganttzk</module>
|
2011-10-28 08:17:54 +02:00
|
|
|
<module>libreplan-webapp</module>
|
2009-05-14 17:16:01 +02:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
===================================================================
|
|
|
|
|
-->
|
|
|
|
|
<!--
|
|
|
|
|
Default values for properties. These default values are expected
|
|
|
|
|
to be valid for most profiles. Specific profiles can overwrite
|
|
|
|
|
values when necessary.
|
|
|
|
|
-->
|
|
|
|
|
<properties>
|
|
|
|
|
<!-- Data source properties -->
|
2011-11-25 10:40:34 +01:00
|
|
|
<dataSource.user>libreplan</dataSource.user>
|
|
|
|
|
<dataSource.password>libreplan</dataSource.password>
|
2011-10-28 08:17:54 +02:00
|
|
|
<dataSource.jndiName>jdbc/libreplan-ds</dataSource.jndiName>
|
2009-05-14 17:16:01 +02:00
|
|
|
<testDataSource.user>${dataSource.user}</testDataSource.user>
|
|
|
|
|
<testDataSource.password>${dataSource.password}</testDataSource.password>
|
2009-10-02 21:12:01 +02:00
|
|
|
<databasetable.prefix>public.</databasetable.prefix>
|
2011-01-31 14:30:02 +01:00
|
|
|
|
2011-02-27 18:09:53 +01:00
|
|
|
<default.passwordsControl>true</default.passwordsControl>
|
2012-04-13 15:45:38 +02:00
|
|
|
<default.exampleUsersDisabled>true</default.exampleUsersDisabled>
|
2009-05-14 17:16:01 +02:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
===================================================================
|
|
|
|
|
-->
|
|
|
|
|
<!--
|
|
|
|
|
Profiles. * The build is always executed by selecting at least
|
|
|
|
|
two non-exclusive profiles. By default, such profiles are "dev"
|
|
|
|
|
and "postgresql" (meaning "use PostgreSQL assuming a development
|
|
|
|
|
environment"). * General profiles. There are two general
|
|
|
|
|
(database-independent) profiles: "dev" and "prod". The former is
|
|
|
|
|
used for development (including testing) and the latter is used
|
|
|
|
|
for production (including testing). As shown below, two
|
|
|
|
|
dataSources (databases schemas) are used in both profiles: one
|
|
|
|
|
for running (dataSource) and another one for the Maven test fase
|
|
|
|
|
(testDataSource). Note the Maven test fase is executed both with
|
|
|
|
|
development and production profiles. * Database-specific
|
|
|
|
|
profiles. There is a profile for each supported database. *
|
|
|
|
|
Specific profiles can be defined to better adapt to a particular
|
|
|
|
|
environment by overwriting/adding properties and/or including
|
|
|
|
|
other chunks of valid XML. * Usage: + mvn <<goal>> => Execute
|
|
|
|
|
<<goal>> with default profiles. + mvn -Pdev,<<database>> <<goal>
|
|
|
|
|
=> Execute <<goal>> with "dev" and <<database>> profiles. + mvn
|
|
|
|
|
-Pprod,<<database>> <<goal>> => Execute <<goal>> with "prod" and
|
|
|
|
|
<<database>> profiles. + Note that when using -P option all
|
|
|
|
|
desired profiles must be specified (e.g. "-Pprod" with the
|
|
|
|
|
intention to select "prod" and the default database profile is
|
|
|
|
|
not correct; "-Pprod,<<database>>" must be used instead). *
|
|
|
|
|
Examples: + mvn <<goal>> + mvn -Ppostgresql,prod <<goal>> + mvn
|
|
|
|
|
-Ppostgresql,dev <<goal>>
|
|
|
|
|
-->
|
|
|
|
|
<profiles>
|
|
|
|
|
|
|
|
|
|
<!-- Development profile -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>dev</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
2011-10-28 08:17:54 +02:00
|
|
|
<!-- LibrePlan environment properties -->
|
|
|
|
|
<libreplan.mode>dev</libreplan.mode>
|
2009-05-14 17:16:01 +02:00
|
|
|
<!-- Hibernate properties -->
|
2009-10-19 09:37:07 +02:00
|
|
|
<hibernate.show_sql>false</hibernate.show_sql>
|
2009-05-14 17:16:01 +02:00
|
|
|
<hibernate.format_sql>true</hibernate.format_sql>
|
|
|
|
|
<hibernate.use_sql_comments>true</hibernate.use_sql_comments>
|
2010-12-09 13:04:36 +01:00
|
|
|
<hibernate.hbm2ddl.auto>validate</hibernate.hbm2ddl.auto>
|
2012-04-13 15:45:38 +02:00
|
|
|
|
|
|
|
|
<!-- Enable example users (user, wsreader and wswriter) -->
|
|
|
|
|
<default.exampleUsersDisabled>false</default.exampleUsersDisabled>
|
2009-05-14 17:16:01 +02:00
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
|
|
|
|
|
<!-- Production profile -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>prod</id>
|
|
|
|
|
<properties>
|
2011-10-28 08:17:54 +02:00
|
|
|
<!-- LibrePlan environment properties -->
|
|
|
|
|
<libreplan.mode>prod</libreplan.mode>
|
2009-05-14 17:16:01 +02:00
|
|
|
<!-- Hibernate properties -->
|
|
|
|
|
<hibernate.show_sql>false</hibernate.show_sql>
|
|
|
|
|
<hibernate.format_sql>false</hibernate.format_sql>
|
|
|
|
|
<hibernate.use_sql_comments>false</hibernate.use_sql_comments>
|
2010-12-09 13:04:36 +01:00
|
|
|
<hibernate.hbm2ddl.auto>validate</hibernate.hbm2ddl.auto>
|
2009-05-14 17:16:01 +02:00
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
|
|
|
|
|
<!-- PostgreSQL profile -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>postgresql</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<!-- JDBC driver properties -->
|
|
|
|
|
<jdbcDriver.groupId>postgresql</jdbcDriver.groupId>
|
|
|
|
|
<jdbcDriver.artifactId>postgresql</jdbcDriver.artifactId>
|
|
|
|
|
<jdbcDriver.version>8.3-603.jdbc4</jdbcDriver.version>
|
|
|
|
|
<jdbcDriver.className>org.postgresql.Driver</jdbcDriver.className>
|
|
|
|
|
<!-- Data source properties -->
|
2011-11-25 10:40:34 +01:00
|
|
|
<dataSource.url>jdbc:postgresql://localhost/libreplan${libreplan.mode}</dataSource.url>
|
2009-05-14 17:16:01 +02:00
|
|
|
<testDataSource.url>${dataSource.url}test</testDataSource.url>
|
|
|
|
|
<!-- Hibernate properties -->
|
|
|
|
|
<hibernate.dialect>org.hibernate.dialect.PostgreSQLDialect</hibernate.dialect>
|
2009-10-02 21:12:01 +02:00
|
|
|
<databasetable.prefix>public.</databasetable.prefix>
|
2009-05-14 17:16:01 +02:00
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
|
|
|
|
|
<!-- MySQL profile -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>mysql</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<!-- JDBC driver properties -->
|
|
|
|
|
<jdbcDriver.groupId>mysql</jdbcDriver.groupId>
|
|
|
|
|
<jdbcDriver.artifactId>mysql-connector-java</jdbcDriver.artifactId>
|
|
|
|
|
<jdbcDriver.version>5.0.5</jdbcDriver.version>
|
|
|
|
|
<jdbcDriver.className>com.mysql.jdbc.Driver</jdbcDriver.className>
|
|
|
|
|
<!-- Data source properties -->
|
2011-11-25 10:40:34 +01:00
|
|
|
<dataSource.url>jdbc:mysql://localhost/libreplan${libreplan.mode}</dataSource.url>
|
2009-05-14 17:16:01 +02:00
|
|
|
<testDataSource.url>${dataSource.url}test</testDataSource.url>
|
|
|
|
|
<!-- Hibernate properties -->
|
2011-09-20 11:33:13 +02:00
|
|
|
<hibernate.dialect>org.hibernate.dialect.MySQL5InnoDBDialect</hibernate.dialect>
|
2009-10-02 21:12:01 +02:00
|
|
|
<databasetable.prefix></databasetable.prefix>
|
2009-05-14 17:16:01 +02:00
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
|
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
===================================================================
|
|
|
|
|
-->
|
2009-08-13 14:13:27 +02:00
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
<!-- Getttext commons -->
|
|
|
|
|
<repository>
|
|
|
|
|
<id>gettext-commons-site</id>
|
|
|
|
|
<url>http://gettext-commons.googlecode.com/svn/maven-repository</url>
|
|
|
|
|
</repository>
|
2011-10-26 14:09:22 +02:00
|
|
|
<!-- LibrePlan repository -->
|
|
|
|
|
<repository>
|
|
|
|
|
<id>thirdparty</id>
|
|
|
|
|
<url>http://nexus.libreplan.org/content/repositories/thirdparty</url>
|
|
|
|
|
</repository>
|
2009-08-13 14:13:27 +02:00
|
|
|
</repositories>
|
|
|
|
|
|
2009-08-14 10:45:29 +02:00
|
|
|
<pluginRepositories>
|
|
|
|
|
<pluginRepository>
|
|
|
|
|
<id>gettext-commons-site</id>
|
|
|
|
|
<url>http://gettext-commons.googlecode.com/svn/maven-repository</url>
|
|
|
|
|
</pluginRepository>
|
2009-08-19 10:35:28 +02:00
|
|
|
<!--
|
|
|
|
|
<pluginRepository>
|
|
|
|
|
<id>codehaus-plugin-repository</id>
|
|
|
|
|
<name>Codehaus Plugin Repository</name>
|
|
|
|
|
<url>http://repository.codehaus.org</url>
|
|
|
|
|
</pluginRepository>
|
2009-09-18 14:56:57 +02:00
|
|
|
|
2009-08-19 10:35:28 +02:00
|
|
|
-->
|
2009-08-14 10:45:29 +02:00
|
|
|
</pluginRepositories>
|
|
|
|
|
|
2009-05-14 17:16:01 +02:00
|
|
|
<!-- Dependency management -->
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
2009-12-17 18:21:52 +01:00
|
|
|
<!-- Jasper Reports -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jasperreports</groupId>
|
|
|
|
|
<artifactId>jasperreports</artifactId>
|
|
|
|
|
<version>3.7.0</version>
|
|
|
|
|
</dependency>
|
2011-03-10 19:05:11 +01:00
|
|
|
<!-- GPL Jasperreport Component for ZK -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.igalia.java.zk.components</groupId>
|
|
|
|
|
<artifactId>jasperreportcomponent</artifactId>
|
|
|
|
|
<version>1.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- GPL JFreechartEngine for ZK -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.igalia.java.zk.components</groupId>
|
|
|
|
|
<artifactId>jfreechartengine</artifactId>
|
2011-12-02 17:49:10 +01:00
|
|
|
<version>1.1</version>
|
2011-03-10 19:05:11 +01:00
|
|
|
</dependency>
|
2011-10-19 19:02:04 +02:00
|
|
|
<!-- GPL detailrow Component for ZK -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.igalia.java.zk.components</groupId>
|
|
|
|
|
<artifactId>customdetailrowcomponent</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</dependency>
|
2009-08-13 14:13:27 +02:00
|
|
|
<!-- Gettext commons -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xnap.commons</groupId>
|
|
|
|
|
<artifactId>gettext-commons</artifactId>
|
|
|
|
|
<version>0.9.6</version>
|
|
|
|
|
</dependency>
|
2009-05-14 17:16:01 +02:00
|
|
|
<!-- JDBC driver -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>${jdbcDriver.groupId}</groupId>
|
|
|
|
|
<artifactId>${jdbcDriver.artifactId}</artifactId>
|
|
|
|
|
<version>${jdbcDriver.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Hibernate -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate</artifactId>
|
2009-11-26 12:33:22 +01:00
|
|
|
<version>3.2.7.ga</version>
|
2010-03-25 23:02:11 +01:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>javax.transaction</groupId>
|
|
|
|
|
<artifactId>jta</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
|
<artifactId>geronimo-jta_1.0.1B_spec</artifactId>
|
|
|
|
|
<version>1.1.1</version>
|
2009-05-14 17:16:01 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate-annotations</artifactId>
|
|
|
|
|
<version>3.3.1.GA</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
|
<version>3.0.0.ga</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- JUnit -->
|
|
|
|
|
<!--
|
|
|
|
|
IMPORTANT: Spring TestContext 2.5.x is not compatible
|
|
|
|
|
with JUnit 4.5.
|
|
|
|
|
-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<version>4.4</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Easy mock -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
|
<artifactId>easymock</artifactId>
|
|
|
|
|
<version>2.4</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2009-09-08 16:26:21 +02:00
|
|
|
<dependency>
|
2010-08-19 10:19:35 +02:00
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
|
<artifactId>easymockclassextension</artifactId>
|
|
|
|
|
<version>2.4</version>
|
|
|
|
|
<scope>test</scope>
|
2009-09-08 16:26:21 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
2009-05-14 17:16:01 +02:00
|
|
|
<!-- Spring -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring</artifactId>
|
|
|
|
|
<version>2.5.6</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
|
<version>2.5.6</version>
|
|
|
|
|
<scope>test</scope>
|
2009-11-19 14:53:59 +01:00
|
|
|
</dependency>
|
|
|
|
|
<!-- Spring security -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-core</artifactId>
|
|
|
|
|
<version>2.0.5.RELEASE</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-aop</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-support</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-acl</artifactId>
|
|
|
|
|
<version>2.0.5.RELEASE</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-dao</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-jdbc</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-core-tiger</artifactId>
|
|
|
|
|
<version>2.0.5.RELEASE</version>
|
|
|
|
|
</dependency>
|
2011-07-04 11:54:31 +02:00
|
|
|
<!-- Spring Dependency LDAP -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.ldap</groupId>
|
|
|
|
|
<artifactId>spring-ldap-core</artifactId>
|
|
|
|
|
<version>1.3.1.RELEASE</version>
|
2011-08-09 11:38:57 +02:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-aop</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-support</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-tx</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2011-07-04 11:54:31 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.ldap</groupId>
|
|
|
|
|
<artifactId>spring-ldap-core-tiger</artifactId>
|
|
|
|
|
<version>1.3.1.RELEASE</version>
|
2011-08-09 11:38:57 +02:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-aop</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-support</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-tx</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2011-07-04 11:54:31 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.ldap</groupId>
|
|
|
|
|
<artifactId>spring-ldap-odm</artifactId>
|
|
|
|
|
<version>1.3.1.RELEASE</version>
|
2011-08-09 11:38:57 +02:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-aop</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-support</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-tx</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2011-07-04 11:54:31 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.ldap</groupId>
|
|
|
|
|
<artifactId>spring-ldap-ldif-core</artifactId>
|
|
|
|
|
<version>1.3.1.RELEASE</version>
|
2011-08-09 11:38:57 +02:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-aop</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-support</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-tx</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2011-07-04 11:54:31 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.ldap</groupId>
|
|
|
|
|
<artifactId>spring-ldap-ldif-batch</artifactId>
|
|
|
|
|
<version>1.3.1.RELEASE</version>
|
2011-08-09 11:38:57 +02:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-aop</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-support</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-tx</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2010-03-16 12:30:21 +01:00
|
|
|
<!-- AspectJ -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-aop</artifactId>
|
|
|
|
|
<version>2.5.6</version>
|
2011-08-09 11:38:57 +02:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2010-03-16 12:30:21 +01:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
|
|
<artifactId>aspectjtools</artifactId>
|
|
|
|
|
<version>1.5.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2009-11-19 14:53:59 +01:00
|
|
|
<!-- AspectJ (required by Spring Security) -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
|
|
<artifactId>aspectjrt</artifactId>
|
|
|
|
|
<version>1.5.4</version>
|
2009-06-27 16:49:22 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.json-lib</groupId>
|
|
|
|
|
<artifactId>json-lib</artifactId>
|
|
|
|
|
<version>2.2.3</version>
|
|
|
|
|
<classifier>jdk15</classifier>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
|
<version>3.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.ezmorph</groupId>
|
|
|
|
|
<artifactId>ezmorph</artifactId>
|
|
|
|
|
<version>1.0.6</version>
|
2009-05-14 19:20:00 +02:00
|
|
|
</dependency>
|
2009-08-10 12:11:29 +02:00
|
|
|
<!-- Commons lang-->
|
2009-05-14 19:20:00 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
|
<version>2.4</version>
|
2009-05-14 17:16:01 +02:00
|
|
|
</dependency>
|
2010-01-25 00:38:33 +01:00
|
|
|
<!-- Commons Math-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-math</groupId>
|
|
|
|
|
<artifactId>commons-math</artifactId>
|
|
|
|
|
<version>1.2</version>
|
|
|
|
|
</dependency>
|
2009-05-14 17:16:01 +02:00
|
|
|
<!-- Commons Logging (required by many frameworks)-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
|
<version>1.0.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- BeanShell (required by ZK)-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.beanshell</groupId>
|
|
|
|
|
<artifactId>bsh</artifactId>
|
|
|
|
|
<version>2.0b4</version>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Apache Commons Fileupload (required by ZK) -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
|
|
<version>1.2.1</version>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- ZK -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zk</groupId>
|
|
|
|
|
<artifactId>zul</artifactId>
|
2012-04-25 16:21:24 +02:00
|
|
|
<version>5.0.11</version>
|
2009-05-14 17:16:01 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zk</groupId>
|
|
|
|
|
<artifactId>zkplus</artifactId>
|
2012-04-25 16:21:24 +02:00
|
|
|
<version>5.0.11</version>
|
2009-05-14 17:16:01 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zk</groupId>
|
|
|
|
|
<artifactId>zk</artifactId>
|
2012-04-25 16:21:24 +02:00
|
|
|
<version>5.0.11</version>
|
2010-12-27 12:49:25 +01:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.jruby</groupId>
|
|
|
|
|
<artifactId>jruby</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2009-05-14 17:16:01 +02:00
|
|
|
</dependency>
|
|
|
|
|
<!-- JGraphT -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jgrapht</groupId>
|
|
|
|
|
<artifactId>jgrapht-jdk1.5</artifactId>
|
|
|
|
|
<version>0.7.3</version>
|
|
|
|
|
</dependency>
|
2009-09-18 14:56:57 +02:00
|
|
|
<!-- Jfreechart -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jfree</groupId>
|
|
|
|
|
<artifactId>jfreechart</artifactId>
|
|
|
|
|
<version>1.0.13</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jfree</groupId>
|
|
|
|
|
<artifactId>jcommon</artifactId>
|
|
|
|
|
<version>1.0.16</version>
|
|
|
|
|
</dependency>
|
2009-06-24 12:24:07 +02:00
|
|
|
<!-- Joda Time -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
|
<version>1.6</version>
|
|
|
|
|
</dependency>
|
2009-06-24 12:24:08 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
|
<artifactId>joda-time-hibernate</artifactId>
|
|
|
|
|
<version>1.1</version>
|
2011-08-09 11:38:57 +02:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>cglib</groupId>
|
|
|
|
|
<artifactId>cglib-full</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2009-06-24 12:24:08 +02:00
|
|
|
</dependency>
|
2011-10-28 08:17:54 +02:00
|
|
|
<!-- LibrePlan ZK Components -->
|
2009-05-14 17:16:01 +02:00
|
|
|
<dependency>
|
2011-10-28 08:17:54 +02:00
|
|
|
<groupId>org.libreplan</groupId>
|
2009-08-16 19:48:39 +02:00
|
|
|
<artifactId>ganttzk</artifactId>
|
2010-12-15 12:04:40 +01:00
|
|
|
<version>${project.version}</version>
|
2009-06-10 20:05:52 +02:00
|
|
|
</dependency>
|
2011-10-28 08:17:54 +02:00
|
|
|
<!-- LibrePlan Business -->
|
2009-05-14 17:16:01 +02:00
|
|
|
<dependency>
|
2011-10-28 08:17:54 +02:00
|
|
|
<groupId>org.libreplan</groupId>
|
|
|
|
|
<artifactId>libreplan-business</artifactId>
|
2010-12-15 12:04:40 +01:00
|
|
|
<version>${project.version}</version>
|
2009-05-14 17:16:01 +02:00
|
|
|
</dependency>
|
2009-09-27 22:21:49 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.dbunit</groupId>
|
|
|
|
|
<artifactId>dbunit</artifactId>
|
|
|
|
|
<version>2.4.6</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
<version>1.2.14</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
|
<version>1.5.5</version>
|
|
|
|
|
</dependency>
|
2009-05-14 17:16:01 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
|
<version>2.5</version>
|
|
|
|
|
<type>jar</type>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2009-10-08 13:48:52 +02:00
|
|
|
<!-- JAX-RS API -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.ws.rs</groupId>
|
|
|
|
|
<artifactId>jsr311-api</artifactId>
|
|
|
|
|
<version>1.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- CXF -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-transports-http</artifactId>
|
|
|
|
|
<version>2.2.3</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
|
|
|
|
|
<version>2.2.3</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2009-10-09 01:31:29 +02:00
|
|
|
<!-- ZK Timeplot -->
|
|
|
|
|
<dependency>
|
2011-04-10 16:32:59 +02:00
|
|
|
<groupId>org.zkoss.zkforge</groupId>
|
2009-10-09 01:31:29 +02:00
|
|
|
<artifactId>timeplotz</artifactId>
|
2011-01-20 13:42:19 +01:00
|
|
|
<version>1.1_50_1</version>
|
2009-10-09 01:31:29 +02:00
|
|
|
</dependency>
|
2009-10-09 01:31:32 +02:00
|
|
|
<dependency>
|
2010-08-19 10:19:35 +02:00
|
|
|
<groupId>org.zkoss.zkforge</groupId>
|
2009-10-09 01:31:32 +02:00
|
|
|
<artifactId>timelinez</artifactId>
|
2010-09-09 13:46:34 +02:00
|
|
|
<version>2.3.1_50</version>
|
2011-07-22 18:41:28 +02:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.zkoss.common</groupId>
|
|
|
|
|
<artifactId>zcommon</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2009-10-09 01:31:32 +02:00
|
|
|
</dependency>
|
2010-07-09 13:58:12 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.ehcache</groupId>
|
|
|
|
|
<artifactId>ehcache</artifactId>
|
|
|
|
|
<version>1.6.2</version>
|
|
|
|
|
</dependency>
|
2011-07-01 09:46:36 +02:00
|
|
|
<!-- LiquiBase -->
|
2010-11-24 17:00:07 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
|
<artifactId>liquibase-core</artifactId>
|
2012-04-24 09:45:35 +02:00
|
|
|
<version>2.0.4</version>
|
2010-11-24 17:00:07 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
|
<artifactId>liquibase-maven-plugin</artifactId>
|
2012-04-24 09:45:35 +02:00
|
|
|
<version>2.0.4</version>
|
2010-11-24 17:00:07 +01:00
|
|
|
</dependency>
|
2009-05-14 17:16:01 +02:00
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
|
|
|
|
<!-- =============================================================== -->
|
|
|
|
|
<!-- Filtering -->
|
|
|
|
|
<resources>
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
Apply filtering to files matching the following
|
|
|
|
|
expressions in src/main/resources.
|
|
|
|
|
-->
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>*spring-config.xml</include>
|
|
|
|
|
<include>*hibernate.cfg.xml</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
Continue considering resources the files in
|
|
|
|
|
src/main/resources, but without applying filtering.
|
|
|
|
|
-->
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
</resource>
|
|
|
|
|
|
|
|
|
|
<!-- Filter Jetty configuration -->
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>../src/main/jetty</directory>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>jetty-env.xml</include>
|
|
|
|
|
</includes>
|
|
|
|
|
<targetPath>../jetty</targetPath>
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
</resource>
|
2010-06-28 12:23:28 +02:00
|
|
|
|
2011-02-24 20:43:28 +01:00
|
|
|
<!-- Report bundle directories -->
|
2010-06-28 12:23:28 +02:00
|
|
|
<resource>
|
2011-10-28 08:17:54 +02:00
|
|
|
<directory>../libreplan-webapp/src/main/jasper/workingArrangementsPerOrder_Bundle/</directory>
|
2010-06-28 12:23:28 +02:00
|
|
|
</resource>
|
|
|
|
|
<resource>
|
2011-10-28 08:17:54 +02:00
|
|
|
<directory>../libreplan-webapp/src/main/jasper/completedEstimatedHours_Bundle/</directory>
|
2010-06-28 12:23:28 +02:00
|
|
|
</resource>
|
|
|
|
|
<resource>
|
2011-10-28 08:17:54 +02:00
|
|
|
<directory>../libreplan-webapp/src/main/jasper/hoursWorkedPerWorker_Bundle/</directory>
|
2010-06-28 12:23:28 +02:00
|
|
|
</resource>
|
2010-09-21 11:29:24 +02:00
|
|
|
<resource>
|
2011-10-28 08:17:54 +02:00
|
|
|
<directory>../libreplan-webapp/src/main/jasper/hoursWorkedPerWorkerInAMonth_Bundle/</directory>
|
2010-09-21 11:29:24 +02:00
|
|
|
</resource>
|
2010-06-28 12:23:28 +02:00
|
|
|
<resource>
|
2011-10-28 08:17:54 +02:00
|
|
|
<directory>../libreplan-webapp/src/main/jasper/orderCostsPerResource_Bundle/</directory>
|
2010-06-28 12:23:28 +02:00
|
|
|
</resource>
|
|
|
|
|
<resource>
|
2011-10-28 08:17:54 +02:00
|
|
|
<directory>../libreplan-webapp/src/main/jasper/schedulingProgressPerOrder_Bundle/</directory>
|
2010-06-28 12:23:28 +02:00
|
|
|
</resource>
|
|
|
|
|
<resource>
|
2011-10-28 08:17:54 +02:00
|
|
|
<directory>../libreplan-webapp/src/main/jasper/timeLineRequiredMaterial_Bundle/</directory>
|
2010-06-28 12:23:28 +02:00
|
|
|
</resource>
|
|
|
|
|
<resource>
|
2011-10-28 08:17:54 +02:00
|
|
|
<directory>../libreplan-webapp/src/main/jasper/workingProgressPerTask_Bundle/</directory>
|
2010-06-28 12:23:28 +02:00
|
|
|
</resource>
|
|
|
|
|
|
2009-05-14 17:16:01 +02:00
|
|
|
</resources>
|
|
|
|
|
|
|
|
|
|
<testResources>
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
Apply filtering to files matching the following
|
|
|
|
|
expressions in src/test/resources.
|
|
|
|
|
-->
|
|
|
|
|
<testResource>
|
|
|
|
|
<directory>src/test/resources</directory>
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>*spring-config-test.xml</include>
|
|
|
|
|
<include>*hibernate-test.cfg.xml</include>
|
2009-10-02 21:12:01 +02:00
|
|
|
<include>**/dbunit*.xml</include>
|
2009-05-14 17:16:01 +02:00
|
|
|
</includes>
|
|
|
|
|
</testResource>
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
Continue considering resources the files in
|
|
|
|
|
src/test/resources, but without applying filtering.
|
|
|
|
|
-->
|
|
|
|
|
<testResource>
|
|
|
|
|
<directory>src/test/resources</directory>
|
|
|
|
|
</testResource>
|
|
|
|
|
|
|
|
|
|
</testResources>
|
|
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
2009-08-13 14:13:27 +02:00
|
|
|
<!-- =========================================================== -->
|
|
|
|
|
<!-- Gettext configuration -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.xnap.commons</groupId>
|
|
|
|
|
<artifactId>maven-gettext-plugin</artifactId>
|
|
|
|
|
<version>1.2.0</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<targetBundle>i18n.Messages</targetBundle>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
2009-05-14 17:16:01 +02:00
|
|
|
<!-- =========================================================== -->
|
|
|
|
|
<!-- Compiler configuration -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2012-02-06 10:10:39 +01:00
|
|
|
<version>2.3.2</version>
|
2009-05-14 17:16:01 +02:00
|
|
|
<configuration>
|
|
|
|
|
<verbose>true</verbose>
|
|
|
|
|
<source>1.6</source>
|
|
|
|
|
<target>1.6</target>
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<!-- =========================================================== -->
|
|
|
|
|
<!-- Assembly configuration -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<descriptors>
|
|
|
|
|
<descriptor>src/main/assembly/src.xml</descriptor>
|
|
|
|
|
</descriptors>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
2009-06-14 23:23:23 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
2012-02-06 10:10:39 +01:00
|
|
|
<version>2.2</version>
|
2009-06-14 23:23:23 +02:00
|
|
|
<configuration>
|
|
|
|
|
<webResources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/webapp/META-INF</directory>
|
|
|
|
|
<targetPath>META-INF</targetPath>
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>context.xml</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
|
|
|
|
</webResources>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
2009-05-14 17:16:01 +02:00
|
|
|
<!-- =========================================================== -->
|
|
|
|
|
<!-- Jetty configuration -->
|
|
|
|
|
<plugin>
|
|
|
|
|
|
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
|
<artifactId>maven-jetty-plugin</artifactId>
|
2009-07-01 15:52:39 +02:00
|
|
|
<version>6.1.18</version>
|
2009-05-14 17:16:01 +02:00
|
|
|
<configuration>
|
|
|
|
|
<jettyEnvXml>target/jetty/jetty-env.xml</jettyEnvXml>
|
2009-07-01 15:52:39 +02:00
|
|
|
<reload>manual</reload>
|
2009-07-10 10:13:59 +02:00
|
|
|
<stopPort>9966</stopPort>
|
|
|
|
|
<stopKey>stop</stopKey>
|
2009-05-14 17:16:01 +02:00
|
|
|
<!-- Log to the console. -->
|
|
|
|
|
<requestLog implementation="org.mortbay.jetty.NCSARequestLog">
|
|
|
|
|
<!--
|
|
|
|
|
This do anything for Jetty, but is a
|
|
|
|
|
workaround for a Maven bug that prevents the
|
|
|
|
|
requestLog from being set.
|
|
|
|
|
-->
|
|
|
|
|
<append>true</append>
|
|
|
|
|
</requestLog>
|
|
|
|
|
<!--
|
2009-07-01 15:52:39 +02:00
|
|
|
<connectors>
|
|
|
|
|
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
|
|
|
|
|
<port>9090</port>
|
|
|
|
|
</connector>
|
|
|
|
|
</connectors>
|
2009-05-14 17:16:01 +02:00
|
|
|
-->
|
|
|
|
|
</configuration>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>${jdbcDriver.groupId}</groupId>
|
|
|
|
|
<artifactId>${jdbcDriver.artifactId}</artifactId>
|
|
|
|
|
<version>${jdbcDriver.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</plugin>
|
2009-08-10 11:48:49 +02:00
|
|
|
|
|
|
|
|
<!-- =========================================================== -->
|
|
|
|
|
<!-- Tomcat configuration -->
|
2009-08-07 10:11:16 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>tomcat-maven-plugin</artifactId>
|
2009-08-19 10:35:28 +02:00
|
|
|
<version>1.0-beta-1</version>
|
2009-08-07 10:11:16 +02:00
|
|
|
<configuration>
|
|
|
|
|
<url>${tomcatUrl}</url>
|
|
|
|
|
<server>${tomcatServer}</server>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2009-08-10 11:48:49 +02:00
|
|
|
|
|
|
|
|
<!-- =========================================================== -->
|
|
|
|
|
<!-- Cobertura configuration -->
|
2009-08-10 07:49:39 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
2010-09-30 00:18:40 +02:00
|
|
|
<version>2.4</version>
|
2009-08-10 11:48:49 +02:00
|
|
|
<configuration>
|
|
|
|
|
<formats>
|
|
|
|
|
<format>xml</format>
|
2009-08-23 13:37:36 +02:00
|
|
|
<format>html</format>
|
2009-08-10 11:48:49 +02:00
|
|
|
</formats>
|
2010-09-30 00:18:40 +02:00
|
|
|
<maxmem>512M</maxmem>
|
2009-08-10 11:48:49 +02:00
|
|
|
</configuration>
|
2009-08-10 07:49:39 +02:00
|
|
|
</plugin>
|
2010-11-24 17:00:07 +01:00
|
|
|
|
|
|
|
|
<!-- =========================================================== -->
|
|
|
|
|
<!-- LiquiBase plugin -->
|
2011-07-01 09:46:36 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
|
<artifactId>liquibase-maven-plugin</artifactId>
|
2012-04-24 09:45:35 +02:00
|
|
|
<version>2.0.4</version>
|
2010-11-24 17:00:07 +01:00
|
|
|
</plugin>
|
|
|
|
|
|
2009-08-10 07:49:39 +02:00
|
|
|
</plugins>
|
2009-08-10 11:48:49 +02:00
|
|
|
</build>
|
2010-09-30 00:18:40 +02:00
|
|
|
|
2009-04-14 17:51:03 +02:00
|
|
|
</project>
|