(no commit message)
[utils] / 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   <modelVersion>4.0.0</modelVersion>
5   <groupId>org.wamblee</groupId>
6   <artifactId>utils</artifactId>
7   <packaging>pom</packaging>
8   <version>0.2-SNAPSHOT</version>
9   <name>wamblee.org utility libraries</name>
10   <url>http://wamblee.org</url>
11   <modules>
12     <module>support</module>
13   </modules>
14   <dependencies>
15     <dependency>
16       <groupId>junit</groupId>
17       <artifactId>junit</artifactId>
18       <version>3.8.1</version>
19       <scope>test</scope>
20     </dependency>
21     <dependency>
22       <groupId>dbunit</groupId>
23       <artifactId>dbunit</artifactId>
24       <version>2.1</version>
25       <scope>test</scope>
26     </dependency>
27     <dependency>
28       <groupId>jmock</groupId>
29       <artifactId>jmock-cglib</artifactId>
30       <version>1.1.0</version>
31       <scope>test</scope>
32     </dependency>
33   </dependencies>
34   
35   <dependencyManagement>
36     <dependencies>
37       <dependency>
38         <groupId>commons-logging</groupId>
39         <artifactId>commons-logging</artifactId>
40         <version>1.0.2</version>
41       </dependency>
42       <dependency>
43         <groupId>commons-beanutils</groupId>
44         <artifactId>commons-beanutils</artifactId>
45         <version>1.7.0</version>
46       </dependency>
47       <dependency>
48         <groupId>springframework</groupId>
49         <artifactId>spring-beans</artifactId>
50         <version>1.2.6</version>
51       </dependency>
52       <dependency>
53         <groupId>springframework</groupId>
54         <artifactId>spring-hibernate</artifactId>
55         <version>1.2.6</version>
56       </dependency>
57       <!-- should be possible to remove the dependence on log4j -->
58       <dependency>
59         <groupId>log4j</groupId>
60         <artifactId>log4j</artifactId>
61         <version>1.2.8</version>
62       </dependency>
63       <dependency>
64         <groupId>dom4j</groupId>
65         <artifactId>dom4j</artifactId>
66         <version>1.6</version>
67       </dependency>
68       <dependency>
69         <groupId>ehcache</groupId>
70         <artifactId>ehcache</artifactId>
71         <version>1.1</version>
72       </dependency>
73       <dependency>
74         <groupId>xerces</groupId>
75         <artifactId>xerces</artifactId>
76         <version>2.4.0</version>
77       </dependency>
78       <dependency>
79         <groupId>org.hibernate</groupId>
80         <artifactId>hibernate</artifactId>
81         <version>3.0.5</version>
82       </dependency>
83
84     </dependencies>   
85   </dependencyManagement>
86
87   <build>
88     <plugins>
89       <plugin>
90         <groupId>org.apache.maven.plugins</groupId>
91         <artifactId>maven-compiler-plugin</artifactId>
92         <configuration>
93           <source>1.5</source>
94           <target>1.5</target>
95         </configuration>
96       </plugin>
97
98       <plugin>
99         <groupId>org.apache.maven.plugins</groupId>
100         <artifactId>maven-surefire-plugin</artifactId>
101         <configuration>
102           <includes>
103             <include>**/*Test.java</include>
104           </includes>
105         </configuration>
106       </plugin>
107     </plugins>
108
109
110   </build>
111 </project>