2009-08-07 13:39:55 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2009-08-10 12:11:29 +02:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2009-08-07 13:39:55 +02:00
|
|
|
|
2009-08-10 12:11:29 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.navalplanner</groupId>
|
|
|
|
|
<artifactId>navalplanner</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<artifactId>ganttzk-demo-webapp</artifactId>
|
|
|
|
|
<packaging>war</packaging>
|
2010-02-05 13:37:43 +01:00
|
|
|
<name>NavalPlan Web Client Module</name>
|
2009-08-07 13:39:55 +02:00
|
|
|
|
2009-08-10 12:11:29 +02:00
|
|
|
<build>
|
|
|
|
|
<finalName>ganttzk-demo-webapp</finalName>
|
2009-08-19 10:35:27 +02:00
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
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>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
|
2009-08-10 12:11:29 +02:00
|
|
|
</build>
|
2009-08-07 13:39:55 +02:00
|
|
|
|
|
|
|
|
<dependencies>
|
2009-08-19 10:35:27 +02:00
|
|
|
<!-- Gettext commons -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xnap.commons</groupId>
|
|
|
|
|
<artifactId>gettext-commons</artifactId>
|
|
|
|
|
</dependency>
|
2009-08-07 13:39:55 +02:00
|
|
|
<!-- Spring -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- BeanShell (required by ZK) -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.beanshell</groupId>
|
|
|
|
|
<artifactId>bsh</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 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>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zk</groupId>
|
|
|
|
|
<artifactId>zkex</artifactId>
|
|
|
|
|
</dependency>
|
2010-02-05 13:37:43 +01:00
|
|
|
<!-- NavalPlan ZK Components -->
|
2009-08-07 13:39:55 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.navalplanner</groupId>
|
2009-08-16 19:48:39 +02:00
|
|
|
<artifactId>ganttzk</artifactId>
|
2009-08-07 13:39:55 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
|
<artifactId>easymock</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
|
</dependency>
|
2009-08-10 12:11:29 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
|
</dependency>
|
2009-08-19 10:35:27 +02:00
|
|
|
<!--
|
|
|
|
|
Apache Commons IO (required by Commons Fileupload but
|
|
|
|
|
declared as optional it commons-fileupload.pom)
|
|
|
|
|
-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
|
<version>1.2</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
2009-08-07 13:39:55 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|