2009-08-13 17:23:12 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2016-10-13 11:49:04 +03:00
|
|
|
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-08-13 17:23:12 +02:00
|
|
|
|
2009-04-14 17:51:03 +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-04-14 17:51:03 +02:00
|
|
|
</parent>
|
2009-08-13 17:23:12 +02:00
|
|
|
<artifactId>ganttzk</artifactId>
|
2009-04-14 17:51:03 +02:00
|
|
|
<packaging>jar</packaging>
|
2026-01-23 11:52:02 +00:00
|
|
|
<name>TASKPM ZK Components Module</name>
|
2009-04-14 17:51:03 +02:00
|
|
|
|
2012-03-14 17:14:15 +01:00
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>i18n</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<build>
|
|
|
|
|
<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>app.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>
|
2016-10-13 11:49:04 +03:00
|
|
|
|
2012-03-14 17:14:15 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2016-05-13 17:01:29 +03:00
|
|
|
<version>3.0.0</version>
|
2012-03-14 17:14:15 +01:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>default</id>
|
|
|
|
|
<phase>package</phase>
|
2016-05-13 17:01:29 +03:00
|
|
|
<goals>
|
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
|
</goals>
|
2012-03-14 17:14:15 +01:00
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2016-10-13 11:49:04 +03:00
|
|
|
|
2012-03-14 17:14:15 +01:00
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
|
|
|
|
|
2009-04-14 17:51:03 +02:00
|
|
|
<dependencies>
|
2009-11-12 17:54:53 +01:00
|
|
|
<!-- Gettext commons -->
|
|
|
|
|
<dependency>
|
2016-05-13 17:01:29 +03:00
|
|
|
<groupId>com.googlecode.gettext-commons</groupId>
|
2009-11-12 17:54:53 +01:00
|
|
|
<artifactId>gettext-commons</artifactId>
|
|
|
|
|
</dependency>
|
2016-04-27 11:10:08 +03:00
|
|
|
|
2010-09-30 21:53:49 +02:00
|
|
|
<!-- Commons Math-->
|
|
|
|
|
<dependency>
|
2016-04-28 16:45:04 +03:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-math3</artifactId>
|
2010-09-30 21:53:49 +02:00
|
|
|
</dependency>
|
2016-05-04 14:17:30 +03:00
|
|
|
|
|
|
|
|
<!-- Joda Time -->
|
2009-07-01 11:49:46 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
|
</dependency>
|
2016-04-27 11:10:08 +03:00
|
|
|
|
2009-05-04 19:44:34 +02:00
|
|
|
<!-- Commons Logging -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
|
</dependency>
|
2016-05-04 14:17:30 +03:00
|
|
|
|
|
|
|
|
<!-- Commons -->
|
2009-07-26 16:12:16 +02:00
|
|
|
<dependency>
|
2016-04-29 15:31:01 +03:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2009-07-26 16:12:16 +02:00
|
|
|
</dependency>
|
2016-04-27 11:10:08 +03:00
|
|
|
<dependency>
|
2016-05-05 14:44:59 +03:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-collections4</artifactId>
|
2016-10-13 11:49:04 +03:00
|
|
|
</dependency>
|
2014-05-01 16:36:02 +02:00
|
|
|
|
2009-04-14 17:51:03 +02:00
|
|
|
<!-- ZK -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zk</groupId>
|
|
|
|
|
<artifactId>zul</artifactId>
|
|
|
|
|
</dependency>
|
2016-10-13 11:49:04 +03:00
|
|
|
|
2009-04-14 17:51:03 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zk</groupId>
|
|
|
|
|
<artifactId>zkplus</artifactId>
|
|
|
|
|
</dependency>
|
2016-10-13 11:49:04 +03:00
|
|
|
|
2009-04-14 17:51:03 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zk</groupId>
|
|
|
|
|
<artifactId>zk</artifactId>
|
|
|
|
|
</dependency>
|
2016-04-27 11:10:08 +03:00
|
|
|
|
2009-05-04 19:44:34 +02:00
|
|
|
<!-- JGraphT -->
|
2009-04-27 15:57:33 +02:00
|
|
|
<dependency>
|
2009-05-04 19:44:34 +02:00
|
|
|
<groupId>org.jgrapht</groupId>
|
2016-04-28 14:42:42 +03:00
|
|
|
<artifactId>jgrapht-core</artifactId>
|
2009-04-27 15:57:33 +02:00
|
|
|
</dependency>
|
2016-04-27 11:10:08 +03:00
|
|
|
|
2009-07-10 20:40:18 +02:00
|
|
|
<!-- Junit -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
</dependency>
|
2016-04-27 11:10:08 +03:00
|
|
|
|
2009-08-26 11:28:22 +02:00
|
|
|
<!-- Easy mock -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
|
<artifactId>easymock</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2016-10-13 11:49:04 +03:00
|
|
|
|
2009-11-05 12:14:24 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
|
<artifactId>easymockclassextension</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2016-05-04 14:17:30 +03:00
|
|
|
|
|
|
|
|
<!-- JFreeChart -->
|
2009-12-08 22:59:24 +01:00
|
|
|
<dependency>
|
2016-04-27 15:11:17 +03:00
|
|
|
<groupId>org.jfree</groupId>
|
2009-12-08 22:59:24 +01:00
|
|
|
<artifactId>jfreechart</artifactId>
|
|
|
|
|
</dependency>
|
2016-05-04 14:17:30 +03:00
|
|
|
|
|
|
|
|
<!-- JCommon -->
|
2009-12-08 22:59:24 +01:00
|
|
|
<dependency>
|
2016-04-27 15:11:17 +03:00
|
|
|
<groupId>org.jfree</groupId>
|
2009-12-08 22:59:24 +01:00
|
|
|
<artifactId>jcommon</artifactId>
|
|
|
|
|
</dependency>
|
2016-05-04 14:17:30 +03:00
|
|
|
|
|
|
|
|
<!-- Servlet -->
|
2009-12-08 22:59:25 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
2016-04-27 11:10:08 +03:00
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2009-12-08 22:59:25 +01:00
|
|
|
</dependency>
|
2009-04-14 17:51:03 +02:00
|
|
|
</dependencies>
|
2009-08-13 17:23:12 +02:00
|
|
|
|
2009-04-14 17:51:03 +02:00
|
|
|
</project>
|