Separating out all hibernate and spring specific stuff
[utils] / security / jpatest / pom.xml
1 <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">
2
3   <parent>
4     <groupId>org.wamblee</groupId>
5     <artifactId>wamblee-utils</artifactId>
6     <version>0.2.2-SNAPSHOT</version>
7   </parent>
8
9   <modelVersion>4.0.0</modelVersion>
10   <groupId>org.wamblee</groupId>
11   <artifactId>wamblee-security-jpatest</artifactId>
12   <packaging>jar</packaging>
13   <name>/security/jpatest</name>
14   <url>http://wamblee.org</url>
15   <dependencies>
16     
17     <dependency>
18       <groupId>org.wamblee</groupId>
19       <artifactId>wamblee-security-impl</artifactId>
20       <version>0.2.2-SNAPSHOT</version>
21     </dependency>
22     <dependency>
23       <groupId>org.wamblee</groupId>
24       <artifactId>wamblee-security-impl</artifactId>
25       <version>0.2.2-SNAPSHOT</version>
26       <type>test-jar</type>
27     </dependency>
28     <dependency>
29       <groupId>org.wamblee</groupId>
30       <artifactId>wamblee-support-general</artifactId>
31       <version>0.2.2-SNAPSHOT</version>
32     </dependency>
33     <dependency>
34       <groupId>org.wamblee</groupId>
35       <artifactId>wamblee-support-general</artifactId>
36       <type>test-jar</type>
37       <version>0.2.2-SNAPSHOT</version>
38     </dependency>
39     <dependency>
40       <groupId>org.wamblee</groupId>
41       <artifactId>wamblee-test-enterprise</artifactId>
42       <version>0.2.2-SNAPSHOT</version>
43       <scope>test</scope>
44     </dependency>
45     <dependency>
46       <groupId>org.wamblee</groupId>
47       <artifactId>wamblee-system-spring</artifactId>
48       <version>0.2.2-SNAPSHOT</version>
49     </dependency>
50     <dependency>
51       <groupId>org.wamblee</groupId>
52       <artifactId>wamblee-system-spring</artifactId>
53       <type>test-jar</type>
54       <version>0.2.2-SNAPSHOT</version>
55     </dependency>
56     <dependency>
57       <groupId>org.wamblee</groupId>
58       <artifactId>wamblee-system-general</artifactId>
59       <type>test-jar</type>
60       <version>0.2.2-SNAPSHOT</version>
61     </dependency>
62     <dependency>
63       <groupId>org.wamblee</groupId>
64       <artifactId>wamblee-support-spring</artifactId>
65       <version>0.2.2-SNAPSHOT</version>
66     </dependency>
67     <dependency>
68       <groupId>org.wamblee</groupId>
69       <artifactId>wamblee-support-spring</artifactId>
70       <type>test-jar</type>
71       <version>0.2.2-SNAPSHOT</version>
72     </dependency>
73
74     <dependency>
75       <groupId>org.wamblee</groupId>
76       <artifactId>wamblee-hibernate-jpa</artifactId>
77       <version>0.2.2-SNAPSHOT</version>
78     </dependency>
79
80     <dependency>
81       <groupId>commons-codec</groupId>
82       <artifactId>commons-codec</artifactId>
83     </dependency>
84
85     <dependency>
86       <groupId>org.springframework</groupId>
87       <artifactId>spring-beans</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.springframework</groupId>
91       <artifactId>spring-hibernate3</artifactId>
92       <exclusions>
93         <exclusion>
94           <groupId>org.hibernate</groupId>
95           <artifactId>hibernate</artifactId>
96         </exclusion>
97       </exclusions>
98     </dependency>
99     <dependency>
100       <groupId>org.springframework</groupId>
101       <artifactId>spring-aop</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>javax.transaction</groupId>
105       <artifactId>transaction-api</artifactId>
106       <version>1.1</version>
107       <scope>test</scope>
108     </dependency>
109
110   </dependencies>
111
112 </project>