The next steps towards making it deployable on the central maven repo.
[utils] / support / test / eclipselink / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
5   <parent>
6     <groupId>org.wamblee</groupId>
7     <artifactId>wamblee-utils</artifactId>
8     <version>0.2-SNAPSHOT</version>
9   </parent>
10
11   <modelVersion>4.0.0</modelVersion>
12   <groupId>org.wamblee</groupId>
13   <artifactId>wamblee-support-test-eclipselink</artifactId>
14   <packaging>jar</packaging>
15   <name>/support/test/eclipselink</name>
16   <url>http://wamblee.org</url>
17
18   <dependencies>
19     <dependency>
20       <groupId>org.wamblee</groupId>
21       <artifactId>wamblee-support-test-enterprise</artifactId>
22       <version>0.2-SNAPSHOT</version>
23     </dependency>
24
25     <dependency>
26       <groupId>org.wamblee</groupId>
27       <artifactId>wamblee-support-test-enterprise</artifactId>
28       <version>0.2-SNAPSHOT</version>
29       <type>test-jar</type>
30     </dependency>
31
32     <dependency>
33       <groupId>org.dbunit</groupId>
34       <artifactId>dbunit</artifactId>
35     </dependency>
36
37     <dependency>
38       <groupId>javax.persistence</groupId>
39       <artifactId>persistence-api</artifactId>
40     </dependency>
41
42     <dependency>
43       <groupId>org.eclipse.persistence</groupId>
44       <artifactId>eclipselink</artifactId>
45     </dependency>
46
47   </dependencies>
48
49    <repositories>
50         <repository>
51             <id>EclipseLink Repo</id>
52             <url>http://www.eclipse.org/downloads/download.php?r=1&amp;nf=1&amp;file=/rt/eclipselink/maven.repo</url>
53         </repository>
54
55     </repositories>
56
57
58 </project>