2010-01-08 17:10:58 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2009-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>
|
2012-07-20 08:57:30 +02:00
|
|
|
<version>1.3.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>
|
2011-10-28 08:17:54 +02:00
|
|
|
<name>LibrePlan Web Client Module</name>
|
2009-04-14 17:51:03 +02:00
|
|
|
|
2010-06-03 18:24:07 +02:00
|
|
|
<profiles>
|
|
|
|
|
<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>
|
2012-09-11 09:05:50 +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>
|
|
|
|
|
<version>4.0.0</version>
|
|
|
|
|
</dependency>
|
2010-06-03 18:24:07 +02:00
|
|
|
</dependencies>
|
|
|
|
|
</plugin>
|
2010-08-12 18:35:38 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<version>2.1.2</version>
|
|
|
|
|
<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>
|
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>
|
|
|
|
|
<version>1.1</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<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>
|
2011-08-30 13:33:09 +02:00
|
|
|
<copy todir="src/main/webapp/help/ru" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
2011-11-14 11:29:14 +01:00
|
|
|
<copy todir="src/main/webapp/help/pt" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
2012-01-12 12:58:32 +01:00
|
|
|
<copy todir="src/main/webapp/help/it" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
2012-02-15 11:18:27 +01:00
|
|
|
<copy todir="src/main/webapp/help/fr" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
2012-03-06 16:50:38 +01:00
|
|
|
<copy todir="src/main/webapp/help/nl" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
2012-04-19 09:01:07 +02:00
|
|
|
<copy todir="src/main/webapp/help/pl" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
2012-05-22 23:15:01 +02:00
|
|
|
<copy todir="src/main/webapp/help/cs" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
2012-07-24 14:00:13 +02:00
|
|
|
<copy todir="src/main/webapp/help/de" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/en/html"/>
|
|
|
|
|
</copy>
|
2012-08-21 08:53:26 +02:00
|
|
|
<copy todir="src/main/webapp/help/ca" failonerror="false">
|
|
|
|
|
<fileset dir="../doc/src/user/es/html"/>
|
|
|
|
|
</copy>
|
2010-06-03 18:33:37 +02: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>
|
|
|
|
|
<delete dir="src/main/webapp/help" failonerror="false" />
|
|
|
|
|
</tasks>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
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>
|
|
|
|
|
<groupId>org.xnap.commons</groupId>
|
|
|
|
|
<artifactId>maven-gettext-plugin</artifactId>
|
|
|
|
|
<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-13 14:13:27 +02:00
|
|
|
|
2011-07-11 17:49:09 +02:00
|
|
|
<pluginManagement>
|
|
|
|
|
<plugins>
|
|
|
|
|
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.eclipse.m2e</groupId>
|
|
|
|
|
<artifactId>lifecycle-mapping</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<lifecycleMappingMetadata>
|
|
|
|
|
<pluginExecutions>
|
|
|
|
|
<pluginExecution>
|
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
|
<versionRange>[1.1,)</versionRange>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>run</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
|
<action>
|
|
|
|
|
<ignore/>
|
|
|
|
|
</action>
|
|
|
|
|
</pluginExecution>
|
|
|
|
|
<pluginExecution>
|
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>jasperreports-maven-plugin</artifactId>
|
|
|
|
|
<versionRange>[1.0-beta-2,)</versionRange>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>compile-reports</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
|
<action>
|
|
|
|
|
<ignore/>
|
|
|
|
|
</action>
|
|
|
|
|
</pluginExecution>
|
|
|
|
|
<pluginExecution>
|
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
|
<groupId>org.xnap.commons</groupId>
|
|
|
|
|
<artifactId>maven-gettext-plugin</artifactId>
|
|
|
|
|
<versionRange>[1.2.0,)</versionRange>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>dist</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
|
<action>
|
|
|
|
|
<ignore></ignore>
|
|
|
|
|
</action>
|
|
|
|
|
</pluginExecution>
|
|
|
|
|
</pluginExecutions>
|
|
|
|
|
</lifecycleMappingMetadata>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</pluginManagement>
|
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>
|
2012-09-11 09:05:50 +02:00
|
|
|
<groupId>net.sf.jasperreports</groupId>
|
2009-12-17 18:21:52 +01:00
|
|
|
<artifactId>jasperreports</artifactId>
|
|
|
|
|
</dependency>
|
2012-09-11 09:07:15 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.jasperreports</groupId>
|
|
|
|
|
<artifactId>jasperreports-fonts</artifactId>
|
|
|
|
|
</dependency>
|
2011-03-01 11:58:29 +01:00
|
|
|
<!-- GPL Jasperreport Component for ZK -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.igalia.java.zk.components</groupId>
|
|
|
|
|
<artifactId>jasperreportcomponent</artifactId>
|
2011-03-10 19:05:11 +01:00
|
|
|
</dependency>
|
|
|
|
|
<!-- GPL Jasperreport Component for ZK -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.igalia.java.zk.components</groupId>
|
|
|
|
|
<artifactId>jfreechartengine</artifactId>
|
2011-03-01 11:58:29 +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>
|
|
|
|
|
</dependency>
|
2009-08-13 14:13:27 +02:00
|
|
|
<!-- Gettext commons -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xnap.commons</groupId>
|
|
|
|
|
<artifactId>gettext-commons</artifactId>
|
|
|
|
|
</dependency>
|
2009-08-06 17:58:37 +02:00
|
|
|
<!-- JDBC driver -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>${jdbcDriver.groupId}</groupId>
|
|
|
|
|
<artifactId>${jdbcDriver.artifactId}</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Hibernate -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate</artifactId>
|
|
|
|
|
</dependency>
|
2009-05-14 17:16:01 +02:00
|
|
|
<!-- Spring -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring</artifactId>
|
|
|
|
|
</dependency>
|
2010-03-25 23:02:11 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
|
<artifactId>geronimo-jta_1.0.1B_spec</artifactId>
|
|
|
|
|
</dependency>
|
2009-08-06 17:58:37 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
|
</dependency>
|
2009-11-19 14:53:59 +01:00
|
|
|
<!-- Spring security -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-acl</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-core-tiger</artifactId>
|
|
|
|
|
</dependency>
|
2011-05-20 13:56:11 +02:00
|
|
|
<!-- Spring Dependency LDAP -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.ldap</groupId>
|
|
|
|
|
<artifactId>spring-ldap-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.ldap</groupId>
|
|
|
|
|
<artifactId>spring-ldap-core-tiger</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.ldap</groupId>
|
|
|
|
|
<artifactId>spring-ldap-odm</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.ldap</groupId>
|
|
|
|
|
<artifactId>spring-ldap-ldif-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.ldap</groupId>
|
|
|
|
|
<artifactId>spring-ldap-ldif-batch</artifactId>
|
|
|
|
|
</dependency>
|
2009-11-19 14:53:59 +01:00
|
|
|
<!-- AspectJ (required by Spring Security) -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
|
|
<artifactId>aspectjrt</artifactId>
|
|
|
|
|
</dependency>
|
2009-05-14 17:16:01 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.beanshell</groupId>
|
|
|
|
|
<artifactId>bsh</artifactId>
|
|
|
|
|
</dependency>
|
2009-09-18 14:56:57 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>jfree</groupId>
|
|
|
|
|
<artifactId>jfreechart</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jfree</groupId>
|
|
|
|
|
<artifactId>jcommon</artifactId>
|
|
|
|
|
</dependency>
|
2009-05-14 17:16:01 +02:00
|
|
|
<!-- Apache Commons Fileupload (required by ZK) -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- ZK -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zk</groupId>
|
|
|
|
|
<artifactId>zul</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zk</groupId>
|
|
|
|
|
<artifactId>zkplus</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zk</groupId>
|
|
|
|
|
<artifactId>zk</artifactId>
|
|
|
|
|
</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>
|
2009-05-14 17:16:01 +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>
|
2009-05-14 17:16:01 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
|
<artifactId>easymock</artifactId>
|
|
|
|
|
</dependency>
|
2010-04-07 13:06:06 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
|
<artifactId>easymockclassextension</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2009-05-14 17:16:01 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
|
</dependency>
|
2009-09-07 13:32:29 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
|
</dependency>
|
2009-10-08 13:48:52 +02:00
|
|
|
<!-- JAX-RS API -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.ws.rs</groupId>
|
|
|
|
|
<artifactId>jsr311-api</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- CXF -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-transports-http</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
|
|
|
|
|
</dependency>
|
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>
|
|
|
|
|
<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>
|
|
|
|
|
</dependency>
|
2011-10-23 19:34:40 +02:00
|
|
|
<!-- JGraphT -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jgrapht</groupId>
|
|
|
|
|
<artifactId>jgrapht-jdk1.5</artifactId>
|
|
|
|
|
</dependency>
|
2012-04-27 13:24:39 +02:00
|
|
|
<!-- jqPlot -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>br.com.digilabs.jqplot</groupId>
|
|
|
|
|
<artifactId>jqplot4java</artifactId>
|
|
|
|
|
</dependency>
|
2009-09-07 13:32:29 +02:00
|
|
|
</dependencies>
|
2009-10-09 01:31:29 +02:00
|
|
|
</project>
|