0805881e26e3439f71383cc7497435bdcd57ec83
[utils] / test / enterprise / pom.xml
1 <?xml version="1.0"?>
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/maven-v4_0_0.xsd">
5
6   <parent>
7     <groupId>org.wamblee</groupId>
8     <artifactId>wamblee-utils</artifactId>
9     <version>0.6-SNAPSHOT</version>
10         <relativePath>../..</relativePath>
11   </parent>
12
13   <modelVersion>4.0.0</modelVersion>
14   <groupId>org.wamblee</groupId>
15   <artifactId>wamblee-test-enterprise</artifactId>
16   <packaging>jar</packaging>
17   <name>/test/enterprise</name>
18   <url>http://wamblee.org</url>
19
20   <dependencies>
21     <dependency>
22       <groupId>org.wamblee</groupId>
23       <artifactId>wamblee-support-general</artifactId>
24       <version>0.6-SNAPSHOT</version>
25       <type>test-jar</type>
26     </dependency>
27     <dependency>
28       <groupId>org.wamblee</groupId>
29       <artifactId>wamblee-support-inject</artifactId>
30       <version>0.6-SNAPSHOT</version>
31     </dependency>
32     <dependency>
33       <groupId>org.wamblee</groupId>
34       <artifactId>wamblee-support-inject</artifactId>
35       <version>0.6-SNAPSHOT</version>
36       <type>test-jar</type>
37     </dependency>
38     <dependency>
39       <groupId>org.jboss.weld</groupId>
40       <artifactId>weld-se</artifactId>
41     </dependency>
42     <!-- required jsf api for weld because it will not work with the mangled javaee apis -->
43     <dependency>
44       <groupId>javax.faces</groupId>
45       <artifactId>jsf-api</artifactId>
46       <scope>compile</scope>
47     </dependency>
48
49
50     <dependency>
51       <groupId>org.wamblee</groupId>
52       <artifactId>wamblee-support-general</artifactId>
53       <version>0.6-SNAPSHOT</version>
54     </dependency>
55     <dependency>
56       <groupId>javax.transaction</groupId>
57       <artifactId>transaction-api</artifactId>
58       <scope>compile</scope>
59     </dependency>
60     <dependency>
61       <groupId>junit</groupId>
62       <artifactId>junit</artifactId>
63       <scope>compile</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.apache.derby</groupId>
67       <artifactId>derby</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>mysql</groupId>
71       <artifactId>mysql-connector-java</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.apache.derby</groupId>
75       <artifactId>derbyclient</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.apache.derby</groupId>
79       <artifactId>derbynet</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>commons-dbcp</groupId>
83       <artifactId>commons-dbcp</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>javax.persistence</groupId>
87       <artifactId>persistence-api</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.dbunit</groupId>
91       <artifactId>dbunit</artifactId>
92       <scope>compile</scope>
93     </dependency>
94     <dependency>
95       <groupId>org.slf4j</groupId>
96       <artifactId>slf4j-api</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.slf4j</groupId>
100       <artifactId>slf4j-jdk14</artifactId>
101     </dependency>
102   </dependencies>
103   <distributionManagement>
104     <site>
105       <id>test-enterprise-site</id>
106       <url>file:${distrib}/test/enterprise</url>
107     </site>
108   </distributionManagement>
109
110 </project>