2009-09-07 13:32:29 +02: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>
|
|
|
|
|
<groupId>org.navalplanner</groupId>
|
|
|
|
|
<artifactId>navalplanner</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<artifactId>navalplanner-webapp</artifactId>
|
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
<name>Naval Planner Web Client Module</name>
|
2009-04-14 17:51:03 +02:00
|
|
|
|
2009-08-13 14:13:27 +02:00
|
|
|
<build>
|
2009-08-10 12:11:29 +02:00
|
|
|
<finalName>navalplanner-webapp</finalName>
|
2009-08-13 14:13: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>
|
2009-11-07 19:14:14 +01:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
2009-11-10 12:23:12 +01:00
|
|
|
<phase>compile</phase>
|
2009-11-07 19:14:14 +01:00
|
|
|
<goals>
|
|
|
|
|
<goal>dist</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2009-08-13 14:13:27 +02:00
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
2009-08-10 12:11:29 +02:00
|
|
|
</build>
|
2009-05-14 17:16:01 +02:00
|
|
|
<dependencies>
|
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>
|
2009-08-06 17:58:37 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-test</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>
|
2009-06-10 20:05:52 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.zkoss.zk</groupId>
|
|
|
|
|
<artifactId>zkex</artifactId>
|
|
|
|
|
</dependency>
|
2009-05-14 17:16:01 +02:00
|
|
|
<!-- Naval Planner ZK Components -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.navalplanner</groupId>
|
2009-08-16 19:48:39 +02:00
|
|
|
<artifactId>ganttzk</artifactId>
|
2009-05-14 17:16:01 +02:00
|
|
|
</dependency>
|
|
|
|
|
<!-- Naval Planner Business -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.navalplanner</groupId>
|
|
|
|
|
<artifactId>navalplanner-business</artifactId>
|
|
|
|
|
</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-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>
|
2009-10-09 01:31:32 +02:00
|
|
|
<groupId>org.zkoss.zkforge.timeline</groupId>
|
2009-10-09 01:31:29 +02:00
|
|
|
<artifactId>timelinez</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2009-10-09 01:31:32 +02:00
|
|
|
<groupId>org.zkoss.zkforge.timeplot</groupId>
|
2009-10-09 01:31:29 +02:00
|
|
|
<artifactId>timeplotz</artifactId>
|
|
|
|
|
</dependency>
|
2009-09-07 13:32:29 +02:00
|
|
|
</dependencies>
|
2009-10-09 01:31:29 +02:00
|
|
|
</project>
|