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