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