[maven-release-plugin] prepare for next development iteration
[utils] / security / 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</artifactId>
12   <packaging>jar</packaging>
13   <name>/security</name>
14   <url>http://wamblee.org</url>
15   <dependencies>
16
17     <dependency>
18       <groupId>org.wamblee</groupId>
19       <artifactId>wamblee-support-general</artifactId>
20       <version>0.2.2-SNAPSHOT</version>
21     </dependency>
22     <dependency>
23       <groupId>org.wamblee</groupId>
24       <artifactId>wamblee-support-general</artifactId>
25       <type>test-jar</type>
26       <version>0.2.2-SNAPSHOT</version>
27     </dependency>
28     <dependency>
29       <groupId>org.wamblee</groupId>
30       <artifactId>wamblee-test-enterprise</artifactId>
31       <version>0.2.2-SNAPSHOT</version>
32       <scope>test</scope>
33     </dependency>
34     <dependency>
35       <groupId>org.wamblee</groupId>
36       <artifactId>wamblee-system-spring</artifactId>
37       <version>0.2.2-SNAPSHOT</version>
38     </dependency>
39     <dependency>
40       <groupId>org.wamblee</groupId>
41       <artifactId>wamblee-system-spring</artifactId>
42       <type>test-jar</type>
43       <version>0.2.2-SNAPSHOT</version>
44     </dependency>
45     <dependency>
46       <groupId>org.wamblee</groupId>
47       <artifactId>wamblee-system-general</artifactId>
48       <type>test-jar</type>
49       <version>0.2.2-SNAPSHOT</version>
50     </dependency>
51     <dependency>
52       <groupId>org.wamblee</groupId>
53       <artifactId>wamblee-support-spring</artifactId>
54       <version>0.2.2-SNAPSHOT</version>
55     </dependency>
56     <dependency>
57       <groupId>org.wamblee</groupId>
58       <artifactId>wamblee-support-spring</artifactId>
59       <type>test-jar</type>
60       <version>0.2.2-SNAPSHOT</version>
61     </dependency>
62
63     <dependency>
64       <groupId>org.wamblee</groupId>
65       <artifactId>wamblee-hibernate-jpa</artifactId>
66       <version>0.2.2-SNAPSHOT</version>
67     </dependency>
68
69     <dependency>
70       <groupId>commons-codec</groupId>
71       <artifactId>commons-codec</artifactId>
72     </dependency>
73
74     <dependency>
75       <groupId>org.springframework</groupId>
76       <artifactId>spring-beans</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.springframework</groupId>
80       <artifactId>spring-hibernate3</artifactId>
81       <exclusions>
82         <exclusion>
83           <groupId>org.hibernate</groupId>
84           <artifactId>hibernate</artifactId>
85         </exclusion>
86       </exclusions>
87     </dependency>
88     <dependency>
89       <groupId>org.springframework</groupId>
90       <artifactId>spring-aop</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>javax.transaction</groupId>
94       <artifactId>transaction-api</artifactId>
95       <version>1.1</version>
96       <scope>test</scope>
97     </dependency>
98
99   </dependencies>
100
101 </project>