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