(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     <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>commons-logging</groupId>
86         <artifactId>commons-logging</artifactId>
87         <version>1.0.2</version>
88       </dependency>
89       <dependency>
90         <groupId>commons-httpclient</groupId>
91         <artifactId>commons-httpclient</artifactId>
92         <version>3.0</version>
93       </dependency>
94       <dependency>
95         <groupId>commons-beanutils</groupId>
96         <artifactId>commons-beanutils</artifactId>
97         <version>1.7.0</version>
98       </dependency>
99       <dependency>
100         <groupId>org.springframework</groupId>
101         <artifactId>spring-beans</artifactId>
102         <version>1.2.8</version>
103       </dependency>
104       <dependency>
105         <groupId>org.springframework</groupId>
106         <artifactId>spring-orm</artifactId>
107         <version>1.2.8</version>
108       </dependency>
109       <!-- should be possible to remove the dependence on log4j -->
110       <dependency>
111         <groupId>log4j</groupId>
112         <artifactId>log4j</artifactId>
113         <version>1.2.8</version>
114       </dependency>
115       <dependency>
116         <groupId>dom4j</groupId>
117         <artifactId>dom4j</artifactId>
118         <version>1.6</version>
119         <exclusions>
120           <exclusion>
121             <groupId>xml-apis</groupId>
122             <artifactId>xml-apis</artifactId>
123           </exclusion>
124         </exclusions>
125       </dependency>
126       <dependency>
127         <groupId>ehcache</groupId>
128         <artifactId>ehcache</artifactId>
129         <version>1.1</version>
130       </dependency>
131       <dependency>
132         <groupId>xerces</groupId>
133         <artifactId>xerces</artifactId>
134         <version>2.4.0</version>
135       </dependency>
136       <dependency>
137         <groupId>org.hibernate</groupId>
138         <artifactId>hibernate</artifactId>
139         <version>3.0.5</version>
140       </dependency>
141       <dependency>
142         <groupId>commons-email</groupId>
143         <artifactId>commons-email</artifactId>
144         <version>1.0</version>
145       </dependency>
146       <dependency>
147         <groupId>jaxen</groupId>
148         <artifactId>jaxen</artifactId>
149         <version>1.1-beta-9</version>
150         <exclusions>
151           <exclusion>
152             <groupId>xom</groupId>
153             <artifactId>xom</artifactId>
154           </exclusion>
155           <exclusion>
156             <groupId>xerces</groupId>
157             <artifactId>xmlParserAPIs</artifactId>
158           </exclusion>
159         </exclusions>
160       </dependency>
161       <dependency>
162         <groupId>jstl</groupId>
163         <artifactId>jstl</artifactId>
164         <version>1.1.2</version>
165       </dependency>
166       <dependency>
167         <groupId>taglibs</groupId>
168         <artifactId>standard</artifactId>
169         <version>1.1.2</version>
170       </dependency>
171
172
173     </dependencies>
174   </dependencyManagement>
175
176   <build>
177     <plugins>
178       <plugin>
179         <groupId>org.apache.maven.plugins</groupId>
180         <artifactId>maven-compiler-plugin</artifactId>
181         <configuration>
182           <source>1.5</source>
183           <target>1.5</target>
184         </configuration>
185       </plugin>
186
187       <plugin>
188         <groupId>org.apache.maven.plugins</groupId>
189         <artifactId>maven-surefire-plugin</artifactId>
190         <configuration>
191           <includes>
192             <include>**/*Test.java</include>
193           </includes>
194         </configuration>
195       </plugin>
196
197     </plugins>
198
199   </build>
200 </project>