Moved over some of the security stuff from Photos.
[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</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.wamblee</groupId>
25       <artifactId>wamblee-support</artifactId>
26       <type>test-jar</type>
27     </dependency>
28     <dependency>
29       <groupId>org.wamblee</groupId>
30       <artifactId>wamblee-hibernate-jpa</artifactId>
31     </dependency>
32     
33     <dependency>
34       <groupId>commons-codec</groupId>
35       <artifactId>commons-codec</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>mysql</groupId>
39       <artifactId>mysql-connector-java</artifactId>
40     </dependency>
41    
42     <dependency>
43       <groupId>org.springframework</groupId>
44       <artifactId>spring-beans</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.springframework</groupId>
48       <artifactId>spring-hibernate3</artifactId>
49       <exclusions>
50         <exclusion>
51           <groupId>org.hibernate</groupId>
52           <artifactId>hibernate</artifactId>
53         </exclusion>
54       </exclusions>
55     </dependency>
56     <dependency>
57       <groupId>org.springframework</groupId>
58       <artifactId>spring-aop</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>javax.transaction</groupId>
62       <artifactId>transaction-api</artifactId>
63       <version>1.1</version>
64       <scope>test</scope>
65     </dependency>
66  
67   </dependencies>
68
69 </project>