Relocated dependencies in Maven central repository haven been updated (pom.xml files), style of inclusion of dependencies has been improved (pom.xml files), profile-based approach (root pom.xml) has been improved (bug fixed for supporting multiple databases, PostgreSQL has been set as the default database, and addition of HSQLDB), README.txt updated, and JavDoc for navalplanner-business code.
60 lines
2 KiB
XML
60 lines
2 KiB
XML
<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">
|
|
|
|
<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>
|
|
|
|
<build>
|
|
<finalName>navalplanner-webapp</finalName>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<!-- 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>
|
|
<!-- 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>
|
|
</dependencies>
|
|
|
|
</project>
|