(no commit message)
[utils] / support / test / 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</artifactId>
14   <packaging>jar</packaging>
15   <name>wamblee.org support general library</name>
16   <url>http://wamblee.org</url>
17
18   <dependencies>
19     <dependency>
20       <groupId>org.wamblee</groupId>
21       <artifactId>wamblee-support-general</artifactId>
22       <version>0.2-SNAPSHOT</version>
23       <type>test-jar</type>
24     </dependency>
25     <!-- dependency>
26       <groupId>org.wamblee</groupId>
27       <artifactId>wamblee-hibernate-jpa</artifactId>
28       <version>0.2-SNAPSHOT</version>
29     </dependency -->
30     <dependency>
31       <groupId>javax.transaction</groupId>
32       <artifactId>transaction-api</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>junit</groupId>
36       <artifactId>junit</artifactId>
37       <scope>compile</scope>
38     </dependency>
39     <dependency>
40       <groupId>org.apache.derby</groupId>
41       <artifactId>derby</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>mysql</groupId>
45       <artifactId>mysql-connector-java</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.apache.derby</groupId>
49       <artifactId>derbyclient</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.apache.derby</groupId>
53       <artifactId>derbynet</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>commons-dbcp</groupId>
57       <artifactId>commons-dbcp</artifactId>
58     </dependency>
59     <!-- 
60     <dependency>
61       <groupId>toplink.essentials</groupId>
62       <artifactId>toplink-essentials</artifactId>
63     </dependency>
64     -->
65     <dependency>
66       <groupId>org.eclipse.persistence</groupId>
67       <artifactId>eclipselink</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>javax.persistence</groupId>
71       <artifactId>persistence-api</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.dbunit</groupId>
75       <artifactId>dbunit</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.slf4j</groupId>
79       <artifactId>slf4j-api</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.slf4j</groupId>
83       <artifactId>slf4j-jdk14</artifactId>
84     </dependency>
85   </dependencies>
86
87 </project>