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