Migration to maven almost complete. At least everything builds and works
[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     <module>crawler</module>
15   </modules>
16   <dependencies>
17     <dependency>
18       <groupId>junit</groupId>
19       <artifactId>junit</artifactId>
20       <version>3.8.1</version>
21       <scope>test</scope>
22     </dependency>
23     <dependency>
24       <groupId>dbunit</groupId>
25       <artifactId>dbunit</artifactId>
26       <version>2.1</version>
27       <scope>test</scope>
28     </dependency>
29     <dependency>
30       <groupId>jmock</groupId>
31       <artifactId>jmock-cglib</artifactId>
32       <version>1.1.0</version>
33       <scope>test</scope>
34       <exclusions>
35         <exclusion>
36           <groupId>cglib</groupId>
37           <artifactId>cglib-full</artifactId>
38         </exclusion>
39       </exclusions>
40     </dependency>
41   </dependencies>
42
43   <dependencyManagement>
44     <dependencies>
45       <dependency>
46         <groupId>org.wamblee</groupId>
47         <artifactId>support</artifactId>
48         <version>${project.version}</version>
49       </dependency>
50       <dependency>
51         <groupId>org.wamblee</groupId>
52         <artifactId>socketproxy</artifactId>
53         <version>${project.version}</version>
54       </dependency>
55       <dependency>
56         <groupId>org.wamblee</groupId>
57         <artifactId>crawler</artifactId>
58         <version>${project.version}</version>
59       </dependency>
60       <dependency>
61         <groupId>org.wamblee</groupId>
62         <artifactId>crawler-basic</artifactId>
63         <version>${project.version}</version>
64       </dependency>
65
66       <dependency>
67         <groupId>javax.servlet</groupId>
68         <artifactId>servlet-api</artifactId>
69         <version>2.3</version>
70         <type>jar</type>
71         <scope>provided</scope>
72       </dependency>
73       <dependency>
74         <groupId>quartz</groupId>
75         <artifactId>quartz</artifactId>
76         <version>1.5.1</version>
77       </dependency>
78       <dependency>
79         <groupId>jtidy</groupId>
80         <artifactId>jtidy</artifactId>
81         <version>4aug2000r7-dev</version>
82       </dependency>
83
84       <dependency>
85         <groupId>oro</groupId>
86         <artifactId>oro</artifactId>
87         <version>2.0.6</version>
88       </dependency>
89       <dependency>
90         <groupId>commons-logging</groupId>
91         <artifactId>commons-logging</artifactId>
92         <version>1.0.2</version>
93       </dependency>
94       <dependency>
95         <groupId>commons-httpclient</groupId>
96         <artifactId>commons-httpclient</artifactId>
97         <version>3.0</version>
98       </dependency>
99       <dependency>
100         <groupId>commons-beanutils</groupId>
101         <artifactId>commons-beanutils</artifactId>
102         <version>1.7.0</version>
103       </dependency>
104       <dependency>
105         <groupId>org.springframework</groupId>
106         <artifactId>spring-beans</artifactId>
107         <version>1.2.8</version>
108       </dependency>
109       <dependency>
110         <groupId>org.springframework</groupId>
111         <artifactId>spring-hibernate</artifactId>
112         <version>1.2.8</version>
113       </dependency>
114       <!-- should be possible to remove the dependence on log4j -->
115       <dependency>
116         <groupId>log4j</groupId>
117         <artifactId>log4j</artifactId>
118         <version>1.2.8</version>
119       </dependency>
120       <dependency>
121         <groupId>dom4j</groupId>
122         <artifactId>dom4j</artifactId>
123         <version>1.6</version>
124         <exclusions>
125           <exclusion>
126             <groupId>xml-apis</groupId>
127             <artifactId>xml-apis</artifactId>
128           </exclusion>
129         </exclusions>
130       </dependency>
131       <dependency>
132         <groupId>ehcache</groupId>
133         <artifactId>ehcache</artifactId>
134         <version>1.1</version>
135       </dependency>
136       <dependency>
137         <groupId>xerces</groupId>
138         <artifactId>xerces</artifactId>
139         <version>2.4.0</version>
140       </dependency>
141       <dependency>
142         <groupId>org.hibernate</groupId>
143         <artifactId>hibernate</artifactId>
144         <version>3.0.5</version>
145       </dependency>
146       <dependency>
147         <groupId>commons-email</groupId>
148         <artifactId>commons-email</artifactId>
149         <version>1.0</version>
150       </dependency>
151       <dependency>
152         <groupId>jaxen</groupId>
153         <artifactId>jaxen</artifactId>
154         <version>1.1-beta-9</version>
155         <exclusions>
156           <exclusion>
157             <groupId>xom</groupId>
158             <artifactId>xom</artifactId>
159           </exclusion>
160           <exclusion>
161             <groupId>xerces</groupId>
162             <artifactId>xmlParserAPIs</artifactId>
163           </exclusion>
164         </exclusions>
165       </dependency>
166       <dependency>
167         <groupId>jstl</groupId>
168         <artifactId>jstl</artifactId>
169         <version>1.1.2</version>
170       </dependency>
171       <dependency>
172         <groupId>taglibs</groupId>
173         <artifactId>standard</artifactId>
174         <version>1.1.2</version>
175       </dependency>
176
177
178     </dependencies>
179   </dependencyManagement>
180
181   <build>
182     <plugins>
183       <plugin>
184         <groupId>org.apache.maven.plugins</groupId>
185         <artifactId>maven-compiler-plugin</artifactId>
186         <configuration>
187           <source>1.5</source>
188           <target>1.5</target>
189         </configuration>
190       </plugin>
191
192       <plugin>
193         <groupId>org.apache.maven.plugins</groupId>
194         <artifactId>maven-surefire-plugin</artifactId>
195         <configuration>
196           <includes>
197             <include>**/*Test.java</include>
198           </includes>
199         </configuration>
200       </plugin>
201
202     </plugins>
203
204   </build>
205 </project>