Basic entities and simple tests
[aquarium] / model / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6
7   <modelVersion>4.0.0</modelVersion>
8   <parent>
9     <groupId>gr.grnet</groupId>
10     <artifactId>aquarium</artifactId>
11     <version>0.0.1-SNAPSHOT</version>
12   </parent>
13
14   <artifactId>model</artifactId>
15   <name>Aquarium Data Model</name>
16
17   <dependencies>
18     <dependency>
19       <groupId>org.eclipse.persistence</groupId>
20       <artifactId>eclipselink</artifactId>
21       <version>2.2.0</version>
22     </dependency>
23     <dependency>
24       <groupId>org.eclipse.persistence</groupId>
25       <artifactId>javax.persistence</artifactId>
26       <version>2.0.3</version>
27     </dependency>
28     <dependency>
29       <groupId>com.h2database</groupId>
30       <artifactId>h2</artifactId>
31       <version>1.3.160</version>
32       <scope>test</scope>
33     </dependency>
34     <dependency>
35       <groupId>mysql</groupId>
36       <artifactId>mysql-connector-java</artifactId>
37       <version>5.1.17</version>
38       <scope>test</scope>
39     </dependency>
40     <dependency>
41       <groupId>org.scala-libs</groupId>
42       <artifactId>scalajpa_2.9.1</artifactId>
43       <version>1.4</version>
44       <scope>test</scope>
45     </dependency>
46   </dependencies>
47
48   <repositories>
49     <repository>
50       <id>EclipseLink Repo</id>
51       <url>http://www.eclipse.org/downloads/download.php?r=1&amp;nf=1&amp;file=/rt/eclipselink/maven.repo</url>
52     </repository>
53   </repositories>
54 </project>