2009-05-06 19:36:37 +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-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-10 12:11:29 +02:00
|
|
|
<build>
|
|
|
|
|
<finalName>navalplanner-webapp</finalName>
|
|
|
|
|
</build>
|
2009-05-06 19:36:37 +02:00
|
|
|
|
2009-05-14 17:16:01 +02:00
|
|
|
<dependencies>
|
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>
|
|
|
|
|
<!-- 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>
|
|
|
|
|
<artifactId>navalplanner-gantt-zk</artifactId>
|
|
|
|
|
</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-08-10 12:11:29 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
|
</dependency>
|
2009-05-14 17:16:01 +02:00
|
|
|
</dependencies>
|
2009-05-06 19:36:37 +02:00
|
|
|
|
2009-04-14 17:51:03 +02:00
|
|
|
</project>
|