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