Migration to maven almost complete. At least everything builds and works
[utils] / support / 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>utils</artifactId>
8     <version>0.2-SNAPSHOT</version>
9   </parent>
10
11   <modelVersion>4.0.0</modelVersion>
12   <groupId>org.wamblee</groupId>
13   <artifactId>support</artifactId>
14   <packaging>jar</packaging>
15   <name>wamblee.org support library</name>
16   <url>http://wamblee.org</url>
17   <dependencies>
18     <dependency>
19       <groupId>commons-logging</groupId>
20       <artifactId>commons-logging</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>commons-beanutils</groupId>
24       <artifactId>commons-beanutils</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.springframework</groupId>
28       <artifactId>spring-beans</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.springframework</groupId>
32       <artifactId>spring-hibernate</artifactId>
33     </dependency>
34     <!-- should be possible to remove the dependence on log4j -->
35     <dependency>
36       <groupId>log4j</groupId>
37       <artifactId>log4j</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>dom4j</groupId>
41       <artifactId>dom4j</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>ehcache</groupId>
45       <artifactId>ehcache</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>xerces</groupId>
49       <artifactId>xerces</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.hibernate</groupId>
53       <artifactId>hibernate</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>jaxen</groupId>
57       <artifactId>jaxen</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>oro</groupId>
61       <artifactId>oro</artifactId>
62     </dependency>
63
64   </dependencies>
65
66 </project>