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-04-14 17:51:03 +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-04-14 17:51:03 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.navalplanner</groupId>
|
|
|
|
|
<artifactId>navalplanner</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<artifactId>navalplanner-business</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<name>Naval Planner Business Module</name>
|
2009-05-06 19:36:37 +02:00
|
|
|
|
2009-04-14 17:51:03 +02:00
|
|
|
<dependencies>
|
2009-05-04 19:44:34 +02:00
|
|
|
<!-- JDBC driver -->
|
2009-04-14 17:51:03 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>${jdbcDriver.groupId}</groupId>
|
|
|
|
|
<artifactId>${jdbcDriver.artifactId}</artifactId>
|
2009-05-04 19:44:34 +02:00
|
|
|
</dependency>
|
|
|
|
|
<!-- Hibernate -->
|
2009-04-14 17:51:03 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate</artifactId>
|
|
|
|
|
</dependency>
|
2009-05-04 19:44:34 +02:00
|
|
|
<!-- JUnit -->
|
2009-04-14 17:51:03 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
</dependency>
|
2009-05-04 19:44:34 +02:00
|
|
|
<!-- Spring -->
|
2009-04-14 17:51:03 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
|
</dependency>
|
2009-05-06 19:36:37 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
|
<artifactId>easymock</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2009-09-08 16:26:21 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
|
<artifactId>easymockclassextension</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2009-05-14 17:16:01 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate-annotations</artifactId>
|
2009-08-10 12:11:29 +02:00
|
|
|
</dependency>
|
2009-06-27 16:49:22 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.json-lib</groupId>
|
|
|
|
|
<artifactId>json-lib</artifactId>
|
|
|
|
|
<classifier>jdk15</classifier>
|
|
|
|
|
</dependency>
|
2009-08-10 12:11:29 +02:00
|
|
|
<dependency>
|
2009-05-14 19:20:00 +02:00
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
|
<artifactId>commons-lang</artifactId>
|
2009-05-14 17:16:01 +02:00
|
|
|
</dependency>
|
2009-06-24 12:24:07 +02:00
|
|
|
<!-- Joda Time -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
|
</dependency>
|
2009-06-24 12:24:08 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
|
<artifactId>joda-time-hibernate</artifactId>
|
|
|
|
|
</dependency>
|
2009-04-14 17:51:03 +02:00
|
|
|
</dependencies>
|
2009-09-07 13:32:29 +02:00
|
|
|
</project>
|