(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>wamblee.org 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-hibernate-jpa</artifactId>
33     </dependency>
34     
35     <dependency>
36       <groupId>commons-codec</groupId>
37       <artifactId>commons-codec</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>mysql</groupId>
41       <artifactId>mysql-connector-java</artifactId>
42     </dependency>
43    
44     <dependency>
45       <groupId>org.springframework</groupId>
46       <artifactId>spring-beans</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.springframework</groupId>
50       <artifactId>spring-hibernate3</artifactId>
51       <exclusions>
52         <exclusion>
53           <groupId>org.hibernate</groupId>
54           <artifactId>hibernate</artifactId>
55         </exclusion>
56       </exclusions>
57     </dependency>
58     <dependency>
59       <groupId>org.springframework</groupId>
60       <artifactId>spring-aop</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>javax.transaction</groupId>
64       <artifactId>transaction-api</artifactId>
65       <version>1.1</version>
66       <scope>test</scope>
67     </dependency>
68  
69   </dependencies>
70
71 </project>