13366e67d395c32973dc38bd126d15f8ed3a190b
[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       <dependency>
49         <groupId>org.wamblee</groupId>
50         <artifactId>crawler</artifactId>
51         <version>${project.version}</version>
52       </dependency>
53       <dependency>
54         <groupId>org.wamblee</groupId>
55         <artifactId>crawler-basic</artifactId>
56         <version>${project.version}</version>
57       </dependency>
58
59
60       <dependency>
61         <groupId>jtidy</groupId>
62         <artifactId>jtidy</artifactId>
63         <version>4aug2000r7-dev</version>
64       </dependency>
65
66       <dependency>
67         <groupId>commons-logging</groupId>
68         <artifactId>commons-logging</artifactId>
69         <version>1.0.2</version>
70       </dependency>
71       <dependency>
72         <groupId>commons-httpclient</groupId>
73         <artifactId>commons-httpclient</artifactId>
74         <version>3.0</version>
75       </dependency>
76       <dependency>
77         <groupId>commons-beanutils</groupId>
78         <artifactId>commons-beanutils</artifactId>
79         <version>1.7.0</version>
80       </dependency>
81       <dependency>
82         <groupId>springframework</groupId>
83         <artifactId>spring-beans</artifactId>
84         <version>1.2.6</version>
85       </dependency>
86       <dependency>
87         <groupId>springframework</groupId>
88         <artifactId>spring-hibernate</artifactId>
89         <version>1.2.6</version>
90       </dependency>
91       <!-- should be possible to remove the dependence on log4j -->
92       <dependency>
93         <groupId>log4j</groupId>
94         <artifactId>log4j</artifactId>
95         <version>1.2.8</version>
96       </dependency>
97       <dependency>
98         <groupId>dom4j</groupId>
99         <artifactId>dom4j</artifactId>
100         <version>1.6</version>
101       </dependency>
102       <dependency>
103         <groupId>ehcache</groupId>
104         <artifactId>ehcache</artifactId>
105         <version>1.1</version>
106       </dependency>
107       <dependency>
108         <groupId>xerces</groupId>
109         <artifactId>xerces</artifactId>
110         <version>2.4.0</version>
111       </dependency>
112       <dependency>
113         <groupId>org.hibernate</groupId>
114         <artifactId>hibernate</artifactId>
115         <version>3.0.5</version>
116       </dependency>
117
118     </dependencies>   
119   </dependencyManagement>
120
121   <build>
122     <plugins>
123       <plugin>
124         <groupId>org.apache.maven.plugins</groupId>
125         <artifactId>maven-compiler-plugin</artifactId>
126         <configuration>
127           <source>1.5</source>
128           <target>1.5</target>
129         </configuration>
130       </plugin>
131
132       <plugin>
133         <groupId>org.apache.maven.plugins</groupId>
134         <artifactId>maven-surefire-plugin</artifactId>
135         <configuration>
136           <includes>
137             <include>**/*Test.java</include>
138           </includes>
139         </configuration>
140       </plugin>
141     </plugins>
142
143
144   </build>
145 </project>