2016-10-26 17:20:38 +03:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2016-04-27 11:10:08 +03: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-08-10 12:11:29 +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-08-10 12:11:29 +02:00
|
|
|
</parent>
|
2011-10-28 08:17:54 +02:00
|
|
|
<artifactId>libreplan-webapp</artifactId>
|
2009-08-10 12:11:29 +02:00
|
|
|
<packaging>war</packaging>
|
2026-01-23 11:52:02 +00:00
|
|
|
<name>TASKPM Web Client Module</name>
|
2009-04-14 17:51:03 +02:00
|
|
|
|
2010-06-03 18:24:07 +02:00
|
|
|
<profiles>
|
2015-11-09 13:05:43 +02:00
|
|
|
|
2010-06-03 18:24:07 +02:00
|
|
|
<profile>
|
|
|
|
|
<id>reports</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<!-- =========================================================== -->
|
|
|
|
|
<!-- Jasper reports configuration -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>jasperreports-maven-plugin</artifactId>
|
|
|
|
|
<version>1.0-beta-2</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<sourceDirectory>${project.build.sourceDirectory}/../jasper</sourceDirectory>
|
|
|
|
|
<outputDirectory>${project.build.sourceDirectory}/../../../target/classes</outputDirectory>
|
|
|
|
|
<xmlValidation>true</xmlValidation>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>compile-reports</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<phase>compile</phase>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!--
|
|
|
|
|
note this must be repeated here to pick up correct xml
|
|
|
|
|
validation
|
|
|
|
|
-->
|
|
|
|
|
<dependency>
|
2012-09-11 09:05:50 +02:00
|
|
|
<groupId>net.sf.jasperreports</groupId>
|
2010-06-03 18:24:07 +02:00
|
|
|
<artifactId>jasperreports</artifactId>
|
2022-07-11 01:50:59 +02:00
|
|
|
<version>4.7.0</version>
|
2010-06-03 18:24:07 +02:00
|
|
|
</dependency>
|
2012-09-11 09:07:15 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.jasperreports</groupId>
|
|
|
|
|
<artifactId>jasperreports-fonts</artifactId>
|
2022-07-11 01:50:59 +02:00
|
|
|
<version>4.0.0</version>
|
2010-06-03 18:24:07 +02:00
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</plugin>
|
2010-08-12 18:35:38 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2016-05-06 18:22:41 +03:00
|
|
|
<version>3.0.0</version>
|
2010-08-12 18:35:38 +02:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>default</id>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2010-06-03 18:24:07 +02:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
2015-11-09 13:05:43 +02:00
|
|
|
|
2010-06-03 18:33:37 +02:00
|
|
|
<profile>
|
|
|
|
|
<id>userguide</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
2016-05-06 18:22:41 +03:00
|
|
|
<version>1.8</version>
|
2010-06-03 18:33:37 +02:00
|
|
|
<executions>
|
2016-10-26 17:20:38 +03:00
|
|
|
<execution>
|
|
|
|
|
<id>user-doc-generation</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>run</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
|
<inherited>false</inherited>
|
|
|
|
|
<configuration>
|
|
|
|
|
<tasks>
|
|
|
|
|
<echo>Executing make html</echo>
|
|
|
|
|
<exec executable="make" failifexecutionfails="false">
|
|
|
|
|
<arg value="-C"/>
|
|
|
|
|
<arg value="../doc/src/user/gl/"/>
|
|
|
|
|
<arg value="html"/>
|
|
|
|
|
</exec>
|
|
|
|
|
<copy todir="src/main/webapp/help/gl" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/gl/html"/>
|
|
|
|
|
</copy>
|
|
|
|
|
<exec executable="make" failifexecutionfails="false">
|
|
|
|
|
<arg value="-C"/>
|
|
|
|
|
<arg value="../doc/src/user/es/"/>
|
|
|
|
|
<arg value="html"/>
|
|
|
|
|
</exec>
|
|
|
|
|
<copy todir="src/main/webapp/help/es" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/es/html"/>
|
|
|
|
|
</copy>
|
|
|
|
|
<exec executable="make" failifexecutionfails="false">
|
|
|
|
|
<arg value="-C"/>
|
|
|
|
|
<arg value="../doc/src/user/en/"/>
|
|
|
|
|
<arg value="html"/>
|
|
|
|
|
</exec>
|
|
|
|
|
<copy todir="src/main/webapp/help/en" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
|
|
|
|
<copy todir="src/main/webapp/help/ru" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
|
|
|
|
<copy todir="src/main/webapp/help/pt" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
|
|
|
|
<copy todir="src/main/webapp/help/it" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
|
|
|
|
<exec executable="make" failifexecutionfails="false">
|
|
|
|
|
<arg value="-C"/>
|
|
|
|
|
<arg value="../doc/src/user/fr/"/>
|
|
|
|
|
<arg value="html"/>
|
|
|
|
|
</exec>
|
|
|
|
|
<copy todir="src/main/webapp/help/fr" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/fr/html"/>
|
|
|
|
|
</copy>
|
|
|
|
|
<copy todir="src/main/webapp/help/nl" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
|
|
|
|
<copy todir="src/main/webapp/help/pl" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
|
|
|
|
<copy todir="src/main/webapp/help/cs" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
|
|
|
|
<copy todir="src/main/webapp/help/de" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
|
|
|
|
<copy todir="src/main/webapp/help/ca" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/es/html"/>
|
|
|
|
|
</copy>
|
|
|
|
|
<copy todir="src/main/webapp/help/zh" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
|
|
|
|
<copy todir="src/main/webapp/help/nb" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
2016-12-27 16:21:40 +01:00
|
|
|
<copy todir="src/main/webapp/help/fa_IR" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
|
|
|
|
<copy todir="src/main/webapp/help/pt_BR" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
|
|
|
|
<copy todir="src/main/webapp/help/sv_SE" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
|
|
|
|
<copy todir="src/main/webapp/help/zh_CN" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
2016-10-26 17:20:38 +03:00
|
|
|
</tasks>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
|
|
|
|
|
<execution>
|
|
|
|
|
<id>user-doc-clean</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>run</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<phase>clean</phase>
|
|
|
|
|
<inherited>false</inherited>
|
|
|
|
|
<configuration>
|
|
|
|
|
<tasks>
|
|
|
|
|
<exec executable="make" failifexecutionfails="false">
|
|
|
|
|
<arg value="-C"/>
|
|
|
|
|
<arg value="../doc/src/user/gl/"/>
|
|
|
|
|
<arg value="clean"/>
|
|
|
|
|
</exec>
|
|
|
|
|
<exec executable="make" failifexecutionfails="false">
|
|
|
|
|
<arg value="-C"/>
|
|
|
|
|
<arg value="../doc/src/user/es/"/>
|
|
|
|
|
<arg value="clean"/>
|
|
|
|
|
</exec>
|
|
|
|
|
<exec executable="make" failifexecutionfails="false">
|
|
|
|
|
<arg value="-C"/>
|
|
|
|
|
<arg value="../doc/src/user/en/"/>
|
|
|
|
|
<arg value="clean"/>
|
|
|
|
|
</exec>
|
|
|
|
|
<exec executable="make" failifexecutionfails="false">
|
|
|
|
|
<arg value="-C"/>
|
|
|
|
|
<arg value="../doc/src/user/fr/"/>
|
|
|
|
|
<arg value="clean"/>
|
|
|
|
|
</exec>
|
|
|
|
|
<delete dir="src/main/webapp/help" failonerror="false" />
|
|
|
|
|
</tasks>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2010-06-03 18:33:37 +02:00
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
2015-11-09 13:05:43 +02:00
|
|
|
|
2012-03-14 17:14:15 +01:00
|
|
|
<profile>
|
|
|
|
|
<id>i18n</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<build>
|
|
|
|
|
<!--
|
|
|
|
|
Gettext Commons plugin
|
|
|
|
|
goals:
|
|
|
|
|
merge: parses source code and generates keys.pot
|
|
|
|
|
dist: generates binary Resoruce Bundle (Messages_XX.class)
|
|
|
|
|
-->
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
2016-05-13 17:01:29 +03:00
|
|
|
<groupId>com.googlecode.gettext-commons</groupId>
|
|
|
|
|
<artifactId>gettext-maven-plugin</artifactId>
|
2012-03-14 17:14:15 +01:00
|
|
|
<configuration>
|
|
|
|
|
<targetBundle>i18n.Messages</targetBundle>
|
|
|
|
|
<poDirectory>${project.build.sourceDirectory}/../resources/i18n</poDirectory>
|
|
|
|
|
<keywords>-k_</keywords>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>compile</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>dist</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
2010-06-03 18:24:07 +02:00
|
|
|
</profiles>
|
|
|
|
|
|
|
|
|
|
<build>
|
2011-10-28 08:17:54 +02:00
|
|
|
<finalName>libreplan-webapp</finalName>
|
2009-08-10 12:11:29 +02:00
|
|
|
</build>
|
2010-06-28 12:23:28 +02:00
|
|
|
|
2009-05-14 17:16:01 +02:00
|
|
|
<dependencies>
|
2009-12-17 18:21:52 +01:00
|
|
|
<!-- Jasper Reports -->
|
|
|
|
|
<dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
<groupId>net.sf.jasperreports</groupId>
|
|
|
|
|
<artifactId>jasperreports</artifactId>
|
2009-12-17 18:21:52 +01:00
|
|
|
</dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
|
2012-09-11 09:07:15 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.jasperreports</groupId>
|
|
|
|
|
<artifactId>jasperreports-fonts</artifactId>
|
|
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2011-03-01 11:58:29 +01:00
|
|
|
<!-- GPL Jasperreport Component for ZK -->
|
|
|
|
|
<dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
<groupId>com.libreplan.java.zk.components</groupId>
|
|
|
|
|
<artifactId>jasperreportcomponent</artifactId>
|
2011-03-10 19:05:11 +01:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2011-03-10 19:05:11 +01:00
|
|
|
<!-- GPL Jasperreport Component for ZK -->
|
|
|
|
|
<dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
<groupId>com.libreplan.java.zk.components</groupId>
|
|
|
|
|
<artifactId>jfreechartengine</artifactId>
|
2011-03-01 11:58:29 +01:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2011-10-19 19:02:04 +02:00
|
|
|
<!-- GPL detailrow Component for ZK -->
|
|
|
|
|
<dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
<groupId>com.libreplan.java.zk.components</groupId>
|
|
|
|
|
<artifactId>customdetailrowcomponent</artifactId>
|
2011-10-19 19:02:04 +02:00
|
|
|
</dependency>
|
2014-04-30 20:05:54 +02:00
|
|
|
|
2016-05-04 14:17:30 +03:00
|
|
|
<!-- Spring Framework -->
|
2009-11-19 14:53:59 +01:00
|
|
|
<dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
2009-11-19 14:53:59 +01:00
|
|
|
</dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
|
2009-11-19 14:53:59 +01:00
|
|
|
<dependency>
|
2016-05-12 17:41:35 +03:00
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context-support</artifactId>
|
2009-11-19 14:53:59 +01:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2011-05-20 13:56:11 +02:00
|
|
|
<!-- Spring Dependency LDAP -->
|
|
|
|
|
<dependency>
|
2014-04-28 01:01:24 +02:00
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-ldap</artifactId>
|
2016-10-26 17:20:38 +03:00
|
|
|
</dependency>
|
2014-04-30 20:05:54 +02:00
|
|
|
|
2016-05-04 14:17:30 +03:00
|
|
|
<!-- Spring security -->
|
2011-05-20 13:56:11 +02:00
|
|
|
<dependency>
|
2014-04-28 01:01:24 +02:00
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-web</artifactId>
|
2011-05-20 13:56:11 +02:00
|
|
|
</dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
|
2011-05-20 13:56:11 +02:00
|
|
|
<dependency>
|
2014-04-28 01:01:24 +02:00
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-acl</artifactId>
|
2011-05-20 13:56:11 +02:00
|
|
|
</dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
|
2016-05-13 17:01:29 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-config</artifactId>
|
|
|
|
|
</dependency>
|
2014-04-28 01:01:24 +02:00
|
|
|
|
2016-05-06 13:01:38 +03:00
|
|
|
<!-- Spring Test -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2016-05-04 14:17:30 +03:00
|
|
|
<!-- BSH -->
|
2009-05-14 17:16:01 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.beanshell</groupId>
|
|
|
|
|
<artifactId>bsh</artifactId>
|
|
|
|
|
</dependency>
|
2016-05-04 14:17:30 +03:00
|
|
|
|
|
|
|
|
<!-- JFreeChart -->
|
2009-09-18 14:56:57 +02:00
|
|
|
<dependency>
|
2016-04-27 15:11:17 +03:00
|
|
|
<groupId>org.jfree</groupId>
|
2009-09-18 14:56:57 +02:00
|
|
|
<artifactId>jfreechart</artifactId>
|
|
|
|
|
</dependency>
|
2016-05-04 14:17:30 +03:00
|
|
|
|
|
|
|
|
<!-- JCommon -->
|
2009-09-18 14:56:57 +02:00
|
|
|
<dependency>
|
2016-04-27 15:11:17 +03:00
|
|
|
<groupId>org.jfree</groupId>
|
2009-09-18 14:56:57 +02:00
|
|
|
<artifactId>jcommon</artifactId>
|
|
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2009-05-14 17:16:01 +02:00
|
|
|
<!-- Apache Commons Fileupload (required by ZK) -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2009-05-14 17:16:01 +02:00
|
|
|
<!-- ZK -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zk</groupId>
|
|
|
|
|
<artifactId>zul</artifactId>
|
|
|
|
|
</dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
|
2009-05-14 17:16:01 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zk</groupId>
|
|
|
|
|
<artifactId>zkplus</artifactId>
|
|
|
|
|
</dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zk</groupId>
|
|
|
|
|
<artifactId>zkbind</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2009-05-14 17:16:01 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zk</groupId>
|
|
|
|
|
<artifactId>zk</artifactId>
|
|
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
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>
|
2009-05-14 17:16:01 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
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>
|
2009-05-14 17:16:01 +02:00
|
|
|
</dependency>
|
2014-04-30 20:05:54 +02:00
|
|
|
|
2016-05-04 14:17:30 +03:00
|
|
|
<!-- JUnit -->
|
2014-04-30 20:05:54 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
</dependency>
|
2014-05-01 16:36:02 +02:00
|
|
|
|
2016-10-26 17:20:38 +03:00
|
|
|
<!-- Datasource for testing -->
|
2014-05-01 16:36:02 +02:00
|
|
|
<dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
<groupId>com.jolbox</groupId>
|
|
|
|
|
<artifactId>bonecp</artifactId>
|
|
|
|
|
<scope>test</scope>
|
2014-05-01 16:36:02 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- JDBC driver -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>${jdbcDriver.groupId}</groupId>
|
|
|
|
|
<artifactId>${jdbcDriver.artifactId}</artifactId>
|
2026-01-23 11:52:02 +00:00
|
|
|
<scope>runtime</scope>
|
2014-05-01 16:36:02 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
2016-05-04 14:17:30 +03:00
|
|
|
<!-- Easymock -->
|
2009-05-14 17:16:01 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
|
<artifactId>easymock</artifactId>
|
2014-04-30 20:05:54 +02:00
|
|
|
<scope>test</scope>
|
2009-05-14 17:16:01 +02:00
|
|
|
</dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
|
2010-04-07 13:06:06 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
|
<artifactId>easymockclassextension</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2014-04-30 20:05:54 +02:00
|
|
|
|
2016-05-04 14:17:30 +03:00
|
|
|
<!-- Servlet -->
|
2009-09-07 13:32:29 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
2016-04-27 11:10:08 +03:00
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2009-09-07 13:32:29 +02:00
|
|
|
</dependency>
|
2015-10-06 18:00:43 +03:00
|
|
|
|
2016-02-18 15:53:05 +02:00
|
|
|
<!-- Java mail -->
|
2015-10-06 18:00:43 +03:00
|
|
|
<dependency>
|
2016-08-04 14:17:35 +03:00
|
|
|
<groupId>com.sun.mail</groupId>
|
|
|
|
|
<artifactId>javax.mail</artifactId>
|
2015-10-06 18:00:43 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
2009-10-08 13:48:52 +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>
|
2009-10-08 13:48:52 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2009-10-08 13:48:52 +02:00
|
|
|
<!-- CXF -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-transports-http</artifactId>
|
|
|
|
|
</dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
|
2009-10-08 13:48:52 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
|
2012-10-24 13:36:01 +02:00
|
|
|
</dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
|
2016-05-10 13:20:53 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-rs-client</artifactId>
|
|
|
|
|
</dependency>
|
2016-05-13 17:01:29 +03:00
|
|
|
|
|
|
|
|
<!-- Jackson -->
|
2016-05-04 14:17:30 +03:00
|
|
|
<dependency>
|
2016-04-26 17:32:57 +03:00
|
|
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
|
|
|
|
<artifactId>jackson-jaxrs-json-provider</artifactId>
|
2012-10-24 13:36:01 +02:00
|
|
|
</dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
|
2012-10-24 13:36:01 +02:00
|
|
|
<dependency>
|
2016-04-26 17:32:57 +03:00
|
|
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
|
|
|
<artifactId>jackson-module-jaxb-annotations</artifactId>
|
2009-10-08 13:48:52 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2009-10-09 01:31:29 +02:00
|
|
|
<!-- ZK Timeplot -->
|
|
|
|
|
<dependency>
|
2010-08-19 10:19:35 +02:00
|
|
|
<groupId>org.zkoss.zkforge</groupId>
|
2009-10-09 01:31:29 +02:00
|
|
|
<artifactId>timelinez</artifactId>
|
|
|
|
|
</dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
|
2009-10-09 01:31:29 +02:00
|
|
|
<dependency>
|
2019-08-01 09:31:07 +00:00
|
|
|
<groupId>dev.libreplan.zkoss</groupId>
|
2009-10-09 01:31:29 +02:00
|
|
|
<artifactId>timeplotz</artifactId>
|
|
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2011-10-23 19:34:40 +02:00
|
|
|
<!-- JGraphT -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jgrapht</groupId>
|
2016-04-28 14:42:42 +03:00
|
|
|
<artifactId>jgrapht-core</artifactId>
|
2011-10-23 19:34:40 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2012-04-27 13:24:39 +02:00
|
|
|
<!-- jqPlot -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>br.com.digilabs.jqplot</groupId>
|
|
|
|
|
<artifactId>jqplot4java</artifactId>
|
|
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2012-08-27 10:04:16 +02:00
|
|
|
<!-- MPXJ Library -->
|
|
|
|
|
<dependency>
|
2016-02-23 16:10:51 +02:00
|
|
|
<groupId>net.sf.mpxj</groupId>
|
2012-08-27 10:04:16 +02:00
|
|
|
<artifactId>mpxj</artifactId>
|
|
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2012-08-24 23:54:31 +02:00
|
|
|
<!-- ZK fileupload -->
|
|
|
|
|
<dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
2012-08-24 23:54:31 +02:00
|
|
|
</dependency>
|
2016-02-18 15:53:05 +02:00
|
|
|
|
2013-01-17 09:56:35 +01:00
|
|
|
<!-- Quartz framework -->
|
|
|
|
|
<dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
|
|
|
<artifactId>quartz</artifactId>
|
2013-01-17 09:56:35 +01:00
|
|
|
</dependency>
|
2016-10-26 17:20:38 +03:00
|
|
|
</dependencies>
|
2009-10-09 01:31:29 +02:00
|
|
|
</project>
|