(no commit message)
[utils] / support / spring / pom.xml
1 <?xml version="1.0"?>
2 <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">
3
4   <parent>
5     <groupId>org.wamblee</groupId>
6     <artifactId>wamblee-utils</artifactId>
7     <version>0.2.5-SNAPSHOT</version>
8   </parent>
9
10   <modelVersion>4.0.0</modelVersion>
11   <groupId>org.wamblee</groupId>
12   <artifactId>wamblee-support-spring</artifactId>
13   <packaging>jar</packaging>
14   <name>/support/spring</name>
15   <url>http://wamblee.org</url>
16   <dependencies>
17     <dependency>
18       <groupId>org.wamblee</groupId>
19       <artifactId>wamblee-support-general</artifactId>
20       <version>0.2.5-SNAPSHOT</version>
21     </dependency>
22     <dependency>
23       <groupId>org.wamblee</groupId>
24       <artifactId>wamblee-support-general</artifactId>
25       <version>0.2.5-SNAPSHOT</version>
26       <type>test-jar</type>
27       <scope>provided</scope>
28     </dependency>
29     <dependency>
30       <groupId>org.springframework</groupId>
31       <artifactId>spring-beans</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.springframework</groupId>
35       <artifactId>spring-hibernate3</artifactId>
36       <exclusions>
37         <exclusion>
38           <groupId>org.hibernate</groupId>
39           <artifactId>hibernate</artifactId>
40         </exclusion>
41       </exclusions>
42     </dependency>
43         <dependency>
44       <groupId>org.springframework</groupId>
45       <artifactId>spring-aop</artifactId>
46     </dependency>
47     <!-- should be possible to remove the dependence on log4j -->
48     <dependency>
49       <groupId>log4j</groupId>
50       <artifactId>log4j</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>dom4j</groupId>
54       <artifactId>dom4j</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>net.sf.ehcache</groupId>
58       <artifactId>ehcache</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.wamblee</groupId>
62       <artifactId>wamblee-hibernate-jpa</artifactId>
63       <version>0.2.5-SNAPSHOT</version>
64     </dependency>
65     <dependency>
66       <groupId>jaxen</groupId>
67       <artifactId>jaxen</artifactId>
68     </dependency>
69
70   </dependencies>
71
72 </project>