(no commit message)
[utils] / security / jpatest / 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.2-SNAPSHOT</version>
9   </parent>
10
11   <modelVersion>4.0.0</modelVersion>
12   <groupId>org.wamblee</groupId>
13   <artifactId>wamblee-security-jpatest</artifactId>
14   <packaging>jar</packaging>
15   <name>/security/jpatest</name>
16   <url>http://wamblee.org</url>
17   <dependencies>
18
19     <dependency>
20       <groupId>org.hibernate</groupId>
21       <artifactId>hibernate-entitymanager</artifactId>
22       <version>3.5.0-Final</version>
23       <exclusions>
24         <exclusion>
25           <groupId>javax.transaction</groupId>
26           <artifactId>jta</artifactId>
27         </exclusion>
28       </exclusions>
29     </dependency>
30     <dependency>
31       <groupId>org.wamblee</groupId>
32       <artifactId>wamblee-security-impl</artifactId>
33       <version>0.2.2-SNAPSHOT</version>
34     </dependency>
35     <dependency>
36       <groupId>org.wamblee</groupId>
37       <artifactId>wamblee-security-impl</artifactId>
38       <version>0.2.2-SNAPSHOT</version>
39       <type>test-jar</type>
40     </dependency>
41     <dependency>
42       <groupId>org.wamblee</groupId>
43       <artifactId>wamblee-support-general</artifactId>
44       <version>0.2.2-SNAPSHOT</version>
45     </dependency>
46     <dependency>
47       <groupId>org.wamblee</groupId>
48       <artifactId>wamblee-support-general</artifactId>
49       <type>test-jar</type>
50       <version>0.2.2-SNAPSHOT</version>
51     </dependency>
52     <dependency>
53       <groupId>org.wamblee</groupId>
54       <artifactId>wamblee-test-enterprise</artifactId>
55       <version>0.2.2-SNAPSHOT</version>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.wamblee</groupId>
60       <artifactId>wamblee-test-hibernate</artifactId>
61       <version>0.2.2-SNAPSHOT</version>
62       <scope>test</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.wamblee</groupId>
66       <artifactId>wamblee-system-spring</artifactId>
67       <version>0.2.2-SNAPSHOT</version>
68     </dependency>
69     <dependency>
70       <groupId>org.wamblee</groupId>
71       <artifactId>wamblee-system-spring</artifactId>
72       <type>test-jar</type>
73       <version>0.2.2-SNAPSHOT</version>
74     </dependency>
75     <dependency>
76       <groupId>org.wamblee</groupId>
77       <artifactId>wamblee-system-general</artifactId>
78       <type>test-jar</type>
79       <version>0.2.2-SNAPSHOT</version>
80     </dependency>
81     <dependency>
82       <groupId>org.wamblee</groupId>
83       <artifactId>wamblee-support-spring</artifactId>
84       <version>0.2.2-SNAPSHOT</version>
85     </dependency>
86     <dependency>
87       <groupId>org.wamblee</groupId>
88       <artifactId>wamblee-support-spring</artifactId>
89       <type>test-jar</type>
90       <version>0.2.2-SNAPSHOT</version>
91     </dependency>
92
93     <dependency>
94       <groupId>org.wamblee</groupId>
95       <artifactId>wamblee-hibernate-jpa</artifactId>
96       <version>0.2.2-SNAPSHOT</version>
97     </dependency>
98
99     <dependency>
100       <groupId>commons-codec</groupId>
101       <artifactId>commons-codec</artifactId>
102     </dependency>
103
104     <dependency>
105       <groupId>org.springframework</groupId>
106       <artifactId>spring-beans</artifactId>
107     </dependency>
108     <dependency>
109       <groupId>org.springframework</groupId>
110       <artifactId>spring-hibernate3</artifactId>
111       <exclusions>
112         <exclusion>
113           <groupId>org.hibernate</groupId>
114           <artifactId>hibernate</artifactId>
115         </exclusion>
116       </exclusions>
117     </dependency>
118     <dependency>
119       <groupId>org.springframework</groupId>
120       <artifactId>spring-aop</artifactId>
121     </dependency>
122     <dependency>
123       <groupId>javax.transaction</groupId>
124       <artifactId>transaction-api</artifactId>
125       <version>1.1</version>
126       <scope>test</scope>
127     </dependency>
128
129   </dependencies>
130
131   <repositories>
132     <repository>
133       <id>jboss</id>
134       <name>JBoss Repo</name>
135       <url>http://repository.jboss.org/maven2</url>
136     </repository>
137   </repositories>
138
139 </project>