2016-05-24 16:55:13 +03:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2016-10-07 11:33:24 +03:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2015-07-19 13:34:26 +02:00
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<groupId>org.libreplan</groupId>
|
|
|
|
|
<artifactId>libreplan</artifactId>
|
|
|
|
|
<packaging>pom</packaging>
|
2016-04-27 11:10:08 +03:00
|
|
|
<version>1.6.0</version>
|
2026-01-23 11:52:02 +00:00
|
|
|
<name>TASKPM</name>
|
2015-07-19 13:34:26 +02:00
|
|
|
|
2016-05-10 15:44:54 +03:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- Modules -->
|
|
|
|
|
<modules>
|
|
|
|
|
<module>libreplan-business</module>
|
|
|
|
|
<module>ganttzk</module>
|
|
|
|
|
<module>libreplan-webapp</module>
|
|
|
|
|
</modules>
|
|
|
|
|
|
2016-05-10 15:44:54 +03:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!--
|
2016-10-07 11:33:24 +03:00
|
|
|
Default values for properties.
|
|
|
|
|
These default values are expected to be valid for most profiles.
|
|
|
|
|
Specific profiles can overwrite values when necessary.
|
2009-05-14 17:16:01 +02:00
|
|
|
-->
|
2015-07-19 13:34:26 +02:00
|
|
|
<properties>
|
|
|
|
|
<!-- Data source properties -->
|
|
|
|
|
<dataSource.user>libreplan</dataSource.user>
|
|
|
|
|
<dataSource.password>libreplan</dataSource.password>
|
|
|
|
|
<dataSource.jndiName>jdbc/libreplan-ds</dataSource.jndiName>
|
|
|
|
|
<testDataSource.user>${dataSource.user}</testDataSource.user>
|
|
|
|
|
<testDataSource.password>${dataSource.password}</testDataSource.password>
|
|
|
|
|
<databasetable.prefix>public.</databasetable.prefix>
|
|
|
|
|
|
|
|
|
|
<default.passwordsControl>true</default.passwordsControl>
|
|
|
|
|
<default.exampleUsersDisabled>true</default.exampleUsersDisabled>
|
2015-11-11 15:45:24 +02:00
|
|
|
<default.emailSendingEnabled>true</default.emailSendingEnabled>
|
2016-12-12 16:38:56 +02:00
|
|
|
<default.deleteAllProjectsButtonDisabled>true</default.deleteAllProjectsButtonDisabled>
|
2015-07-19 13:34:26 +02:00
|
|
|
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2016-10-07 11:33:24 +03:00
|
|
|
|
2016-11-15 11:13:21 +02:00
|
|
|
<jetty-port>8080</jetty-port>
|
2016-10-26 17:20:38 +03:00
|
|
|
<jetty-stop-port>9967</jetty-stop-port>
|
2015-07-19 13:34:26 +02:00
|
|
|
</properties>
|
|
|
|
|
|
2016-05-10 15:44:54 +03:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!--
|
2016-05-10 15:44:54 +03:00
|
|
|
* 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 case (testDataSource).
|
|
|
|
|
Note the Maven test case 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>>
|
2009-05-14 17:16:01 +02:00
|
|
|
-->
|
2015-07-19 13:34:26 +02:00
|
|
|
<profiles>
|
|
|
|
|
|
|
|
|
|
<!-- Development profile -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>dev</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<!-- LibrePlan environment properties -->
|
|
|
|
|
<libreplan.mode>dev</libreplan.mode>
|
|
|
|
|
<!-- Hibernate properties -->
|
|
|
|
|
<hibernate.show_sql>false</hibernate.show_sql>
|
2016-04-19 16:52:00 +03:00
|
|
|
<hibernate.format_sql>false</hibernate.format_sql>
|
|
|
|
|
<hibernate.use_sql_comments>false</hibernate.use_sql_comments>
|
2015-07-19 13:34:26 +02:00
|
|
|
<hibernate.hbm2ddl.auto>validate</hibernate.hbm2ddl.auto>
|
|
|
|
|
|
2016-05-10 15:44:54 +03:00
|
|
|
<!-- Enable example users
|
|
|
|
|
(wsreader, wswriter, wssubcontracting, manager, hresources, outsourcing and reports) -->
|
2015-07-19 13:34:26 +02:00
|
|
|
<default.exampleUsersDisabled>false</default.exampleUsersDisabled>
|
2016-12-12 16:38:56 +02:00
|
|
|
|
|
|
|
|
<!-- Enabling "Delete all projects" button -->
|
|
|
|
|
<default.deleteAllProjectsButtonDisabled>false</default.deleteAllProjectsButtonDisabled>
|
2015-07-19 13:34:26 +02:00
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
|
|
|
|
|
<!-- Production profile -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>prod</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<!-- LibrePlan environment properties -->
|
|
|
|
|
<libreplan.mode>prod</libreplan.mode>
|
|
|
|
|
<!-- 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>
|
|
|
|
|
<hibernate.hbm2ddl.auto>validate</hibernate.hbm2ddl.auto>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
|
|
|
|
|
<!-- PostgreSQL profile -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>postgresql</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<!-- JDBC driver properties -->
|
|
|
|
|
<jdbcDriver.groupId>org.postgresql</jdbcDriver.groupId>
|
|
|
|
|
<jdbcDriver.artifactId>postgresql</jdbcDriver.artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<jdbcDriver.version>42.7.3</jdbcDriver.version>
|
2015-07-19 13:34:26 +02:00
|
|
|
<jdbcDriver.className>org.postgresql.Driver</jdbcDriver.className>
|
|
|
|
|
<!-- Data source properties -->
|
|
|
|
|
<dataSource.url>jdbc:postgresql://localhost/libreplan${libreplan.mode}</dataSource.url>
|
|
|
|
|
<testDataSource.url>${dataSource.url}test</testDataSource.url>
|
|
|
|
|
<!-- Hibernate properties -->
|
2016-08-04 14:17:35 +03:00
|
|
|
<hibernate.dialect>org.hibernate.dialect.PostgreSQL82Dialect</hibernate.dialect>
|
2015-07-19 13:34:26 +02:00
|
|
|
<databasetable.prefix>public.</databasetable.prefix>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
|
2016-05-13 17:01:29 +03:00
|
|
|
<!-- MySQL profile -->
|
2015-07-19 13:34:26 +02:00
|
|
|
<profile>
|
|
|
|
|
<id>mysql</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<!-- JDBC driver properties -->
|
2016-05-13 17:01:29 +03:00
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
If 6.X driver will not throw exceptions (with Timezone), use this configuration:
|
|
|
|
|
|
|
|
|
|
<jdbcDriver.className>com.mysql.cj.jdbc.Driver</jdbcDriver.className>
|
|
|
|
|
<dataSource.url>jdbc:mysql://localhost/libreplan${libreplan.mode}?useSSL=false</dataSource.url>
|
|
|
|
|
-->
|
|
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<jdbcDriver.groupId>mysql</jdbcDriver.groupId>
|
|
|
|
|
<jdbcDriver.artifactId>mysql-connector-java</jdbcDriver.artifactId>
|
2018-08-01 11:24:24 +03:00
|
|
|
<jdbcDriver.version>5.1.46</jdbcDriver.version>
|
2015-07-19 13:34:26 +02:00
|
|
|
<jdbcDriver.className>com.mysql.jdbc.Driver</jdbcDriver.className>
|
|
|
|
|
<!-- Data source properties -->
|
|
|
|
|
<dataSource.url>jdbc:mysql://localhost/libreplan${libreplan.mode}</dataSource.url>
|
|
|
|
|
<testDataSource.url>${dataSource.url}test</testDataSource.url>
|
|
|
|
|
<!-- Hibernate properties -->
|
|
|
|
|
<hibernate.dialect>org.hibernate.dialect.MySQL5InnoDBDialect</hibernate.dialect>
|
2016-05-10 15:44:54 +03:00
|
|
|
<databasetable.prefix/>
|
2015-07-19 13:34:26 +02:00
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
|
2024-11-23 14:49:10 +01:00
|
|
|
<!-- enable sponsoring request on login screen -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>sponsoring</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<sponsor-mode>true</sponsor-mode>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
</profiles>
|
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
<!-- LibrePlan repository -->
|
|
|
|
|
<repository>
|
|
|
|
|
<id>thirdparty</id>
|
2019-06-30 16:08:02 +02:00
|
|
|
<url>https://nexus.libreplan.dev/repository/thirdparty-libreplan16/</url>
|
2015-07-19 13:34:26 +02:00
|
|
|
</repository>
|
2022-01-12 23:28:07 +01:00
|
|
|
|
|
|
|
|
<!-- JFrog Artifactory SaaS repository -->
|
|
|
|
|
<repository>
|
|
|
|
|
<id>jaspersoft-third-party</id>
|
|
|
|
|
<url>https://jaspersoft.jfrog.io/jaspersoft/third-party-ce-artifacts/</url>
|
|
|
|
|
</repository>
|
2015-07-19 13:34:26 +02:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
|
|
<!-- Dependency management -->
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- Jasper Reports -->
|
|
|
|
|
<dependency>
|
2016-10-07 11:33:24 +03:00
|
|
|
<groupId>net.sf.jasperreports</groupId>
|
|
|
|
|
<artifactId>jasperreports</artifactId>
|
|
|
|
|
<version>6.2.2</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-10-07 11:33:24 +03:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.jasperreports</groupId>
|
|
|
|
|
<artifactId>jasperreports-fonts</artifactId>
|
2016-05-10 15:30:26 +03:00
|
|
|
<version>6.0.0</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- GPL Jasperreport Component for ZK -->
|
|
|
|
|
<dependency>
|
2016-10-07 11:33:24 +03:00
|
|
|
<groupId>com.libreplan.java.zk.components</groupId>
|
|
|
|
|
<artifactId>jasperreportcomponent</artifactId>
|
|
|
|
|
<version>1.1</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- GPL JFreechartEngine for ZK -->
|
|
|
|
|
<dependency>
|
2016-10-07 11:33:24 +03:00
|
|
|
<groupId>com.libreplan.java.zk.components</groupId>
|
2015-07-19 13:34:26 +02:00
|
|
|
<artifactId>jfreechartengine</artifactId>
|
2016-10-07 11:33:24 +03:00
|
|
|
<version>1.2</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- GPL detailrow Component for ZK -->
|
|
|
|
|
<dependency>
|
2016-10-07 11:33:24 +03:00
|
|
|
<groupId>com.libreplan.java.zk.components</groupId>
|
2015-07-19 13:34:26 +02:00
|
|
|
<artifactId>customdetailrowcomponent</artifactId>
|
2016-10-07 11:33:24 +03:00
|
|
|
<version>1.1</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- Gettext commons -->
|
|
|
|
|
<dependency>
|
2016-05-13 17:01:29 +03:00
|
|
|
<groupId>com.googlecode.gettext-commons</groupId>
|
2015-07-19 13:34:26 +02:00
|
|
|
<artifactId>gettext-commons</artifactId>
|
2016-05-13 17:01:29 +03:00
|
|
|
<version>0.9.8</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
Object-to-Relation-Mapping (ORM) integration with Hibernate, JPA, and iBatis.
|
|
|
|
|
(depends on spring-core, spring-beans, spring-context, spring-tx)
|
|
|
|
|
Define this if you need ORM (org.springframework.orm.*)
|
2014-04-28 01:01:24 +02:00
|
|
|
-->
|
2016-05-05 14:13:00 +03:00
|
|
|
|
|
|
|
|
<!-- Hibernate -->
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate-core</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>5.4.33.Final</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-11-17 11:05:25 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate-ehcache</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>5.4.33.Final</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
2016-05-05 14:13:00 +03:00
|
|
|
<!-- Hibernate Validator -->
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>6.2.5.Final</version>
|
2016-05-24 16:55:13 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Javax EL (needed for javax validation) -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.el</groupId>
|
|
|
|
|
<artifactId>javax.el-api</artifactId>
|
|
|
|
|
<version>3.0.0</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
2026-01-23 11:52:02 +00:00
|
|
|
<!-- Javax Annotation API (removed from JDK 11+) -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.annotation</groupId>
|
|
|
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
|
|
|
<version>1.3.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2016-10-17 16:54:49 +03:00
|
|
|
<!-- Usertype.Core ( Significant for Hibernate ) -->
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
2016-05-05 16:35:17 +03:00
|
|
|
<groupId>org.jadira.usertype</groupId>
|
|
|
|
|
<artifactId>usertype.core</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>6.0.1.GA</version>
|
2016-05-05 16:35:17 +03:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
2016-10-26 17:20:38 +03:00
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate-entitymanager</artifactId>
|
2016-05-05 16:35:17 +03:00
|
|
|
</exclusion>
|
2016-10-26 17:20:38 +03:00
|
|
|
</exclusions>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- JDBC driver -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>${jdbcDriver.groupId}</groupId>
|
|
|
|
|
<artifactId>${jdbcDriver.artifactId}</artifactId>
|
|
|
|
|
<version>${jdbcDriver.version}</version>
|
2026-01-23 11:52:02 +00:00
|
|
|
<scope>runtime</scope>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-05-24 16:55:13 +03:00
|
|
|
|
|
|
|
|
<!-- Jboss Transaction -->
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jboss.spec.javax.transaction</groupId>
|
2016-05-05 16:35:17 +03:00
|
|
|
<artifactId>jboss-transaction-api_1.2_spec</artifactId>
|
2015-07-19 13:34:26 +02:00
|
|
|
<version>1.0.1.Final</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
<exclusions>
|
2016-10-07 11:33:24 +03:00
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>xml-apis</artifactId>
|
|
|
|
|
<groupId>xml-apis</groupId>
|
|
|
|
|
</exclusion>
|
2015-07-19 13:34:26 +02:00
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2016-05-12 17:41:35 +03:00
|
|
|
<!-- Spring ORM -->
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
2016-05-12 17:41:35 +03:00
|
|
|
<artifactId>spring-orm</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>5.3.31</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-05-05 14:13:00 +03:00
|
|
|
|
2016-05-12 17:41:35 +03:00
|
|
|
<!-- Spring Web -->
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
2016-05-12 17:41:35 +03:00
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>5.3.31</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
2016-10-07 11:33:24 +03:00
|
|
|
<!--
|
|
|
|
|
Various Application Context utilities, including EhCache, JavaMail, Quartz, and Freemarker integration.
|
|
|
|
|
We use QuartzJobBean.
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
<!-- AspectJ Weaver -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
|
|
<artifactId>aspectjweaver</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>1.9.21</version>
|
2016-10-07 11:33:24 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
2016-05-05 14:13:00 +03:00
|
|
|
<!-- Spring context support -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context-support</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>5.3.31</version>
|
2016-05-05 14:13:00 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- Spring security -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-web</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>5.8.9</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-config</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>5.8.9</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-acl</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>5.8.9</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- Spring Dependency LDAP -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-ldap</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>5.8.9</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
2016-05-05 14:13:00 +03:00
|
|
|
<!-- Spring test -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-test</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>5.3.31</version>
|
2016-05-05 14:13:00 +03:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- JUnit -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
2020-10-12 23:18:39 +00:00
|
|
|
<version>4.13.1</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2016-10-07 11:33:24 +03:00
|
|
|
<!-- Datasource for testing -->
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
<groupId>com.jolbox</groupId>
|
|
|
|
|
<artifactId>bonecp</artifactId>
|
|
|
|
|
<version>0.8.0.RELEASE</version>
|
|
|
|
|
<scope>test</scope>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Easy mock -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
|
<artifactId>easymock</artifactId>
|
2016-04-29 15:42:23 +03:00
|
|
|
<version>3.4</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2016-10-07 11:33:24 +03:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
|
<artifactId>easymockclassextension</artifactId>
|
2016-04-29 15:42:23 +03:00
|
|
|
<version>3.2</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2016-05-05 14:44:59 +03:00
|
|
|
<!-- Commons Collections -->
|
2016-04-19 16:52:00 +03:00
|
|
|
<dependency>
|
2016-05-05 14:44:59 +03:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-collections4</artifactId>
|
|
|
|
|
<version>4.1</version>
|
|
|
|
|
</dependency>
|
2016-04-29 15:42:23 +03:00
|
|
|
|
2016-05-05 14:44:59 +03:00
|
|
|
<!-- Commons Lang -->
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
2016-05-05 14:13:00 +03:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
<version>3.4</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- Commons Math-->
|
|
|
|
|
<dependency>
|
2016-05-05 14:13:00 +03:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-math3</artifactId>
|
|
|
|
|
<version>3.6.1</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- Commons Logging (required by many frameworks)-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
|
<artifactId>commons-logging</artifactId>
|
2016-05-06 12:28:11 +03:00
|
|
|
<version>1.2</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-05-05 14:13:00 +03:00
|
|
|
|
|
|
|
|
<!-- Log4j -->
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
2024-11-23 11:20:17 +01:00
|
|
|
<version>2.0.16</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- BeanShell (required by ZK)-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.beanshell</groupId>
|
|
|
|
|
<artifactId>bsh</artifactId>
|
2016-05-10 15:30:26 +03:00
|
|
|
<version>2.0b5</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- Apache Commons Fileupload (required by ZK) -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
2019-06-30 16:17:05 +02:00
|
|
|
<version>1.3.3</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2026-01-23 11:52:02 +00:00
|
|
|
<!-- ZK 8.6.0.1 - using 8.6.x which still has old databinding built-in -->
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zk</groupId>
|
|
|
|
|
<artifactId>zul</artifactId>
|
2019-06-30 21:41:41 +00:00
|
|
|
<version>8.6.0.1</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-10-07 11:33:24 +03:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zk</groupId>
|
|
|
|
|
<artifactId>zkplus</artifactId>
|
2019-06-30 21:41:41 +00:00
|
|
|
<version>8.6.0.1</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-10-07 11:33:24 +03:00
|
|
|
|
2016-10-26 17:20:38 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zk</groupId>
|
|
|
|
|
<artifactId>zkbind</artifactId>
|
2019-06-30 21:41:41 +00:00
|
|
|
<version>8.6.0.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.common</groupId>
|
|
|
|
|
<artifactId>zcommon</artifactId>
|
|
|
|
|
<version>8.6.0.1</version>
|
2016-10-26 17:20:38 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zk</groupId>
|
|
|
|
|
<artifactId>zk</artifactId>
|
2019-06-30 21:41:41 +00:00
|
|
|
<version>8.6.0.1</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.jruby</groupId>
|
|
|
|
|
<artifactId>jruby</artifactId>
|
|
|
|
|
</exclusion>
|
2016-11-15 11:13:21 +02:00
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-jdk14</artifactId>
|
|
|
|
|
</exclusion>
|
2015-07-19 13:34:26 +02:00
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2018-08-01 11:23:05 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.common</groupId>
|
|
|
|
|
<artifactId>zweb</artifactId>
|
2019-06-30 21:41:41 +00:00
|
|
|
<version>8.6.0.1</version>
|
2018-08-01 11:23:05 +03:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- JGraphT -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jgrapht</groupId>
|
2016-05-05 14:13:00 +03:00
|
|
|
<artifactId>jgrapht-core</artifactId>
|
|
|
|
|
<version>0.9.2</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- Jfreechart -->
|
|
|
|
|
<dependency>
|
2016-04-27 15:11:17 +03:00
|
|
|
<groupId>org.jfree</groupId>
|
2015-07-19 13:34:26 +02:00
|
|
|
<artifactId>jfreechart</artifactId>
|
2016-04-27 15:11:17 +03:00
|
|
|
<version>1.0.19</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2016-04-27 15:11:17 +03:00
|
|
|
<groupId>org.jfree</groupId>
|
2015-07-19 13:34:26 +02:00
|
|
|
<artifactId>jcommon</artifactId>
|
2016-04-27 15:11:17 +03:00
|
|
|
<version>1.0.23</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- Joda Time -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
|
<artifactId>joda-time</artifactId>
|
2016-04-27 15:11:17 +03:00
|
|
|
<version>2.9.3</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- LibrePlan ZK Components -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.libreplan</groupId>
|
|
|
|
|
<artifactId>ganttzk</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- LibrePlan Business -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.libreplan</groupId>
|
|
|
|
|
<artifactId>libreplan-business</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2016-05-05 14:13:00 +03:00
|
|
|
|
2026-01-23 11:52:02 +00:00
|
|
|
<!-- Servlet (Tomcat 9 level) -->
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
2016-04-27 11:10:08 +03:00
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>4.0.1</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- JAX-RS API -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.ws.rs</groupId>
|
2016-05-10 15:44:54 +03:00
|
|
|
<artifactId>javax.ws.rs-api</artifactId>
|
|
|
|
|
<version>2.0.1</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- CXF -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-transports-http</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>3.5.8</version>
|
2015-07-19 13:34:26 +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-web</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2016-08-04 14:17:35 +03:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>3.5.8</version>
|
2016-05-10 13:20:53 +03: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>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2016-08-04 14:17:35 +03:00
|
|
|
|
2016-05-10 13:20:53 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-rs-client</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>3.5.8</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2016-05-10 15:44:54 +03:00
|
|
|
<!-- Jackson provider -->
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
2016-04-26 17:32:57 +03:00
|
|
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
|
|
|
|
<artifactId>jackson-jaxrs-json-provider</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>2.17.0</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2016-04-26 17:32:57 +03:00
|
|
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
|
|
|
<artifactId>jackson-module-jaxb-annotations</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>2.17.0</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- ZK Timeplot -->
|
|
|
|
|
<dependency>
|
2019-08-01 09:31:07 +00:00
|
|
|
<groupId>dev.libreplan.zkoss</groupId>
|
2015-07-19 13:34:26 +02:00
|
|
|
<artifactId>timeplotz</artifactId>
|
2019-08-01 09:31:07 +00:00
|
|
|
<version>1.1_50b</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zkforge</groupId>
|
|
|
|
|
<artifactId>timelinez</artifactId>
|
|
|
|
|
<version>2.3.1_50</version>
|
|
|
|
|
<exclusions>
|
2016-10-07 11:33:24 +03:00
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.zkoss.common</groupId>
|
|
|
|
|
<artifactId>zcommon</artifactId>
|
|
|
|
|
</exclusion>
|
2018-08-01 11:23:05 +03:00
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.zkoss.common</groupId>
|
|
|
|
|
<artifactId>zweb</artifactId>
|
|
|
|
|
</exclusion>
|
2016-10-07 11:33:24 +03:00
|
|
|
</exclusions>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
2016-04-26 16:26:43 +03:00
|
|
|
<!-- LiquiBase -->
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
|
<artifactId>liquibase-core</artifactId>
|
2016-05-13 17:01:29 +03:00
|
|
|
<version>3.5.1</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
|
<artifactId>liquibase-maven-plugin</artifactId>
|
2016-05-13 17:01:29 +03:00
|
|
|
<version>3.5.1</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- jqPlot -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>br.com.digilabs.jqplot</groupId>
|
|
|
|
|
<artifactId>jqplot4java</artifactId>
|
2019-06-30 16:08:02 +02:00
|
|
|
<version>1.3.3</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- MPXJ Library -->
|
|
|
|
|
<dependency>
|
2016-02-23 16:10:51 +02:00
|
|
|
<groupId>net.sf.mpxj</groupId>
|
2015-07-19 13:34:26 +02:00
|
|
|
<artifactId>mpxj</artifactId>
|
2016-04-19 16:52:00 +03:00
|
|
|
<version>5.2.2</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- ZK fileupload -->
|
|
|
|
|
<dependency>
|
2016-10-07 11:33:24 +03:00
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
|
<version>2.5</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- Quartz framework -->
|
2016-02-23 16:10:51 +02:00
|
|
|
<dependency>
|
2016-08-04 14:17:35 +03:00
|
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
|
|
|
<artifactId>quartz</artifactId>
|
2020-07-01 18:17:11 +00:00
|
|
|
<version>2.3.2</version>
|
2016-08-04 14:17:35 +03:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Java mail -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sun.mail</groupId>
|
|
|
|
|
<artifactId>javax.mail</artifactId>
|
|
|
|
|
<version>1.5.5</version>
|
2016-02-23 16:10:51 +02:00
|
|
|
</dependency>
|
2016-05-10 15:44:54 +03:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
|
|
|
|
<!-- Filtering -->
|
|
|
|
|
<resources>
|
|
|
|
|
|
2016-05-10 15:44:54 +03:00
|
|
|
<!-- Apply filtering to files matching the following expressions in src/main/resources. -->
|
2015-07-19 13:34:26 +02:00
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>*spring-config.xml</include>
|
|
|
|
|
<include>*hibernate.cfg.xml</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
|
|
|
|
|
2016-05-10 15:44:54 +03:00
|
|
|
<!-- Continue considering resources the files in src/main/resources, but without applying filtering. -->
|
2015-07-19 13:34:26 +02:00
|
|
|
<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>
|
|
|
|
|
|
|
|
|
|
<!-- Report bundle directories -->
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>../libreplan-webapp/src/main/jasper/workingArrangementsPerOrder_Bundle/</directory>
|
|
|
|
|
</resource>
|
2016-10-07 11:33:24 +03:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<resource>
|
|
|
|
|
<directory>../libreplan-webapp/src/main/jasper/completedEstimatedHours_Bundle/</directory>
|
|
|
|
|
</resource>
|
2016-10-07 11:33:24 +03:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<resource>
|
|
|
|
|
<directory>../libreplan-webapp/src/main/jasper/hoursWorkedPerWorker_Bundle/</directory>
|
|
|
|
|
</resource>
|
2016-10-07 11:33:24 +03:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<resource>
|
|
|
|
|
<directory>../libreplan-webapp/src/main/jasper/hoursWorkedPerWorkerInAMonth_Bundle/</directory>
|
|
|
|
|
</resource>
|
2016-10-07 11:33:24 +03:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<resource>
|
|
|
|
|
<directory>../libreplan-webapp/src/main/jasper/orderCostsPerResource_Bundle/</directory>
|
|
|
|
|
</resource>
|
2016-10-07 11:33:24 +03:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<resource>
|
|
|
|
|
<directory>../libreplan-webapp/src/main/jasper/schedulingProgressPerOrder_Bundle/</directory>
|
|
|
|
|
</resource>
|
2016-10-07 11:33:24 +03:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<resource>
|
|
|
|
|
<directory>../libreplan-webapp/src/main/jasper/timeLineRequiredMaterial_Bundle/</directory>
|
|
|
|
|
</resource>
|
2016-10-07 11:33:24 +03:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<resource>
|
|
|
|
|
<directory>../libreplan-webapp/src/main/jasper/workingProgressPerTask_Bundle/</directory>
|
|
|
|
|
</resource>
|
2016-10-07 11:33:24 +03:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<resource>
|
|
|
|
|
<directory>../libreplan-webapp/src/main/jasper/projectStatus_Bundle/</directory>
|
|
|
|
|
</resource>
|
|
|
|
|
|
|
|
|
|
</resources>
|
|
|
|
|
|
|
|
|
|
<testResources>
|
|
|
|
|
|
2016-05-10 15:44:54 +03:00
|
|
|
<!-- Apply filtering to files matching the following expressions in src/test/resources. -->
|
2015-07-19 13:34:26 +02:00
|
|
|
<testResource>
|
|
|
|
|
<directory>src/test/resources</directory>
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>*spring-config-test.xml</include>
|
|
|
|
|
<include>*hibernate-test.cfg.xml</include>
|
|
|
|
|
<include>**/dbunit*.xml</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</testResource>
|
|
|
|
|
|
2016-05-10 15:44:54 +03:00
|
|
|
<!-- Continue considering resources the files in src/test/resources, but without applying filtering. -->
|
2015-07-19 13:34:26 +02:00
|
|
|
<testResource>
|
|
|
|
|
<directory>src/test/resources</directory>
|
|
|
|
|
</testResource>
|
|
|
|
|
|
|
|
|
|
</testResources>
|
|
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
|
|
<!-- Gettext configuration -->
|
|
|
|
|
<plugin>
|
2016-04-19 16:52:00 +03:00
|
|
|
<groupId>com.googlecode.gettext-commons</groupId>
|
|
|
|
|
<artifactId>gettext-maven-plugin</artifactId>
|
|
|
|
|
<version>1.2.4</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
<configuration>
|
|
|
|
|
<targetBundle>i18n.Messages</targetBundle>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<!-- Compiler configuration -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2016-04-19 16:52:00 +03:00
|
|
|
<version>3.5.1</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
<configuration>
|
|
|
|
|
<verbose>true</verbose>
|
2026-01-23 11:52:02 +00:00
|
|
|
<source>21</source>
|
|
|
|
|
<target>21</target>
|
|
|
|
|
<release>21</release>
|
2015-07-19 13:34:26 +02:00
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
2016-05-10 15:44:54 +03:00
|
|
|
|
2015-07-19 13:34:26 +02:00
|
|
|
<!-- Assembly configuration -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<descriptors>
|
|
|
|
|
<descriptor>src/main/assembly/src.xml</descriptor>
|
|
|
|
|
</descriptors>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<version>3.4.0</version>
|
2015-07-19 13:34:26 +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>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2016-04-19 16:52:00 +03:00
|
|
|
<version>2.19.1</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
<configuration>
|
2016-10-07 11:33:24 +03:00
|
|
|
<runOrder>alphabetical</runOrder>
|
2015-07-19 13:34:26 +02:00
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<!-- =========================================================== -->
|
|
|
|
|
<!-- Jetty configuration -->
|
|
|
|
|
<plugin>
|
2016-10-26 17:20:38 +03:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
2024-11-23 11:20:17 +01:00
|
|
|
<version>9.4.56.v20240826</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
<configuration>
|
2016-10-26 17:20:38 +03:00
|
|
|
<systemProperties>
|
|
|
|
|
<systemProperty>
|
|
|
|
|
<name>org.zkoss.zel.impl.parser.SKIP_IDENTIFIER_CHECK</name>
|
|
|
|
|
<value>true</value>
|
|
|
|
|
</systemProperty>
|
|
|
|
|
</systemProperties>
|
|
|
|
|
<jettyXml>target/jetty/jetty-env.xml</jettyXml>
|
2015-07-19 13:34:26 +02:00
|
|
|
<reload>manual</reload>
|
2016-10-07 11:33:24 +03:00
|
|
|
<stopPort>${jetty-stop-port}</stopPort>
|
2015-07-19 13:34:26 +02:00
|
|
|
<stopKey>stop</stopKey>
|
2016-11-15 11:13:21 +02:00
|
|
|
<!-- Log to the console -->
|
2016-10-26 17:20:38 +03:00
|
|
|
<requestLog implementation="org.eclipse.jetty.server.NCSARequestLog">
|
2015-07-19 13:34:26 +02:00
|
|
|
<!--
|
2016-10-26 17:20:38 +03:00
|
|
|
This do anything for Jetty,
|
2016-11-15 11:13:21 +02:00
|
|
|
but is a workaround for a Maven bug that prevents the requestLog from being set.
|
2009-05-14 17:16:01 +02:00
|
|
|
-->
|
2015-07-19 13:34:26 +02:00
|
|
|
<append>true</append>
|
|
|
|
|
</requestLog>
|
2016-10-26 17:20:38 +03:00
|
|
|
<httpConnector>
|
|
|
|
|
<port>${jetty-port}</port>
|
|
|
|
|
</httpConnector>
|
2015-07-19 13:34:26 +02:00
|
|
|
</configuration>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2016-10-07 11:33:24 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>${jdbcDriver.groupId}</groupId>
|
|
|
|
|
<artifactId>${jdbcDriver.artifactId}</artifactId>
|
|
|
|
|
<version>${jdbcDriver.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2016-11-15 11:13:21 +02:00
|
|
|
<!-- Connection pooling -->
|
2016-10-07 11:33:24 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jolbox</groupId>
|
|
|
|
|
<artifactId>bonecp</artifactId>
|
|
|
|
|
<version>0.8.0.RELEASE</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
2024-11-23 11:20:17 +01:00
|
|
|
<version>2.0.16</version>
|
2017-01-01 08:42:21 -05:00
|
|
|
<exclusions>
|
2018-08-01 11:23:05 +03:00
|
|
|
<exclusion>
|
2017-01-01 08:42:21 -05:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
|
</exclusion>
|
2018-08-01 11:23:05 +03:00
|
|
|
</exclusions>
|
2016-10-07 11:33:24 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
<version>19.0</version>
|
|
|
|
|
</dependency>
|
2015-07-19 13:34:26 +02:00
|
|
|
</dependencies>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<!-- Tomcat configuration -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>tomcat-maven-plugin</artifactId>
|
2016-05-06 15:06:11 +03:00
|
|
|
<version>1.1</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
<configuration>
|
|
|
|
|
<url>${tomcatUrl}</url>
|
|
|
|
|
<server>${tomcatServer}</server>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<!-- Cobertura configuration -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
2016-04-19 16:52:00 +03:00
|
|
|
<version>2.7</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
<configuration>
|
|
|
|
|
<formats>
|
|
|
|
|
<format>xml</format>
|
|
|
|
|
<format>html</format>
|
|
|
|
|
</formats>
|
|
|
|
|
<maxmem>512M</maxmem>
|
2016-04-19 16:52:00 +03:00
|
|
|
<check/>
|
2015-07-19 13:34:26 +02:00
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<!-- LiquiBase plugin -->
|
2016-05-06 13:01:38 +03:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
|
<artifactId>liquibase-maven-plugin</artifactId>
|
2016-05-13 17:01:29 +03:00
|
|
|
<version>3.5.1</version>
|
2015-07-19 13:34:26 +02:00
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
2009-04-14 17:51:03 +02:00
|
|
|
</project>
|