added spring subsystem implementation.
[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>wamblee-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>system</module>
14         <module>hibernate-jpa</module>
15         <module>security</module>
16         <module>socketproxy</module>
17         <module>crawler</module>
18         <module>gps</module>
19         <module>mythtv</module>
20     </modules>
21     <dependencies>
22         <dependency>
23             <groupId>junit</groupId>
24             <artifactId>junit</artifactId>
25             <version>4.4</version>
26             <scope>test</scope> 
27         </dependency>
28         <dependency>
29             <groupId>org.dbunit</groupId>
30             <artifactId>dbunit</artifactId>
31             <version>2.2</version>
32             <scope>test</scope>
33         </dependency>
34         <dependency>
35             <groupId>jmock</groupId>
36             <artifactId>jmock-cglib</artifactId>
37             <version>1.1.0</version>
38             <scope>test</scope>
39             <exclusions>
40                 <exclusion>
41                     <groupId>cglib</groupId>
42                     <artifactId>cglib-full</artifactId>
43                 </exclusion>
44             </exclusions>
45         </dependency>
46     </dependencies>
47
48     <dependencyManagement>
49         <dependencies>
50             <dependency>
51                 <groupId>org.wamblee</groupId>
52                 <artifactId>wamblee-support</artifactId>
53                 <version>${project.version}</version>
54             </dependency>
55             <dependency>
56                 <groupId>org.wamblee</groupId>
57                 <artifactId>wamblee-support</artifactId>
58                 <type>test-jar</type>
59                 <version>${project.version}</version>
60             </dependency>
61             <dependency>
62                 <groupId>org.wamblee</groupId>
63                 <artifactId>wamblee-hibernate-jpa</artifactId>
64                 <version>${project.version}</version>
65             </dependency>
66             <dependency>
67                 <groupId>org.wamblee</groupId>
68                 <artifactId>wamblee-hibernate-jpa</artifactId>
69                 <version>${project.version}</version>
70                 <type>test-jar</type>
71             </dependency>
72             <dependency>
73                 <groupId>org.wamblee</groupId>
74                 <artifactId>wamblee-socketproxy</artifactId>
75                 <version>${project.version}</version>
76             </dependency>
77             <dependency>
78                 <groupId>org.wamblee</groupId>
79                 <artifactId>wamblee-socketproxy</artifactId>
80                 <type>test-jar</type>
81                 <version>${project.version}</version>
82             </dependency>
83             <dependency>
84                 <groupId>org.wamblee</groupId>
85                 <artifactId>wamblee-crawler</artifactId>
86                 <version>${project.version}</version>
87             </dependency>
88             <dependency>
89                 <groupId>org.wamblee</groupId>
90                 <artifactId>wamblee-crawler</artifactId>
91                 <type>test-jar</type>
92                 <version>${project.version}</version>
93             </dependency>
94             <dependency>
95                 <groupId>org.wamblee</groupId>
96                 <artifactId>wamblee-crawler-basic</artifactId>
97                 <version>${project.version}</version>
98             </dependency>
99             <dependency>
100                 <groupId>org.wamblee</groupId>
101                 <artifactId>wamblee-crawler-basic</artifactId>
102                 <type>test-jar</type>
103                 <version>${project.version}</version>
104             </dependency>
105
106             <dependency>
107                 <groupId>javax.persistence</groupId>
108                 <artifactId>persistence-api</artifactId>
109                 <version>1.0</version>
110                 <scope>provided</scope>
111             </dependency>
112             <dependency>
113                 <groupId>javax.activation</groupId>
114                 <artifactId>activation</artifactId>
115                 <version>1.1</version>
116             </dependency>
117             <dependency>
118                 <groupId>javax.mail</groupId>
119                 <artifactId>mail</artifactId>
120                 <version>1.4.1</version>
121             </dependency>
122             <dependency>
123                 <groupId>javax.servlet</groupId>
124                 <artifactId>servlet-api</artifactId>
125                 <version>2.3</version>
126                 <type>jar</type>
127                 <scope>provided</scope>
128             </dependency>
129             <dependency>
130                 <groupId>mysql</groupId>
131                 <artifactId>mysql-connector-java</artifactId>
132                 <version>3.1.14</version>
133             </dependency>
134             <dependency>
135                 <groupId>org.apache.derby</groupId>
136                 <artifactId>derby</artifactId>
137                 <version>10.3.2.1</version>
138             </dependency>
139             <dependency>
140                 <groupId>org.apache.derby</groupId>
141                 <artifactId>derbyclient</artifactId>
142                 <version>10.3.2.1</version>
143             </dependency>
144             <dependency>
145                 <groupId>org.apache.derby</groupId>
146                 <artifactId>derbynet</artifactId>
147                 <version>10.3.2.1</version>
148             </dependency>
149             <dependency>
150                 <groupId>quartz</groupId>
151                 <artifactId>quartz</artifactId>
152                 <version>1.5.1</version>
153             </dependency>
154             <dependency>
155                 <groupId>jtidy</groupId>
156                 <artifactId>jtidy</artifactId>
157                 <version>4aug2000r7-dev</version>
158             </dependency>
159
160
161             <dependency>
162                 <groupId>commons-logging</groupId>
163                 <artifactId>commons-logging</artifactId>
164                 <version>1.0.2</version>
165             </dependency>
166             <dependency>
167                 <groupId>commons-httpclient</groupId>
168                 <artifactId>commons-httpclient</artifactId>
169                 <version>3.0</version>
170             </dependency>
171             <dependency>
172                 <groupId>commons-beanutils</groupId>
173                 <artifactId>commons-beanutils</artifactId>
174                 <version>1.7.0</version>
175             </dependency>
176             <dependency>
177                 <groupId>org.springframework</groupId>
178                 <artifactId>spring-beans</artifactId>
179                 <version>${springversion}</version>
180             </dependency>
181             <dependency>
182                 <groupId>org.springframework</groupId>
183                 <artifactId>spring-web</artifactId>
184                 <version>${springversion}</version>
185             </dependency>
186             <dependency>
187                 <groupId>org.springframework</groupId>
188                 <artifactId>spring-jms</artifactId>
189                 <version>${springversion}</version>
190             </dependency>
191             <dependency>
192                 <groupId>org.springframework</groupId>
193                 <artifactId>spring-context</artifactId>
194                 <version>${springversion}</version>
195             </dependency>
196             <dependency>
197                 <groupId>org.springframework</groupId>
198                 <artifactId>spring-hibernate3</artifactId>
199                 <version>${springversion}</version>
200             </dependency>
201             <dependency>
202                 <groupId>org.springframework</groupId>
203                 <artifactId>spring-jpa</artifactId>
204                 <version>${springversion}</version>
205             </dependency>
206             <dependency>
207                 <groupId>org.springframework</groupId>
208                 <artifactId>spring-aop</artifactId>
209                 <version>${springversion}</version>
210             </dependency>
211
212             <!-- should be possible to remove the dependence on log4j -->
213             <dependency>
214                 <groupId>log4j</groupId>
215                 <artifactId>log4j</artifactId>
216                 <version>1.2.8</version>
217             </dependency>
218             <dependency>
219                 <groupId>dom4j</groupId>
220                 <artifactId>dom4j</artifactId>
221                 <version>1.6</version>
222                 <exclusions>
223                     <exclusion>
224                         <groupId>xml-apis</groupId>
225                         <artifactId>xml-apis</artifactId>
226                     </exclusion>
227                 </exclusions>
228             </dependency>
229             <dependency>
230                 <groupId>net.sf.ehcache</groupId>
231                 <artifactId>ehcache</artifactId>
232                 <version>1.2.3</version>
233             </dependency>
234             <dependency>
235                 <groupId>xerces</groupId>
236                 <artifactId>xercesImpl</artifactId>
237                 <version>2.8.1</version>
238             </dependency>
239
240
241             <dependency>
242                 <groupId>commons-email</groupId>
243                 <artifactId>commons-email</artifactId>
244                 <version>1.0</version>
245             </dependency>
246             <dependency>
247                 <groupId>jaxen</groupId>
248                 <artifactId>jaxen</artifactId>
249                 <version>1.1-beta-9</version>
250                 <exclusions>
251                     <exclusion>
252                         <groupId>xom</groupId>
253                         <artifactId>xom</artifactId>
254                     </exclusion>
255                     <exclusion>
256                         <groupId>xerces</groupId>
257                         <artifactId>xmlParserAPIs</artifactId>
258                     </exclusion>
259                 </exclusions>
260             </dependency>
261             <dependency>
262                 <groupId>jstl</groupId>
263                 <artifactId>jstl</artifactId>
264                 <version>1.1.2</version>
265             </dependency>
266             <dependency>
267                 <groupId>taglibs</groupId>
268                 <artifactId>standard</artifactId>
269                 <version>1.1.2</version>
270             </dependency>
271             <dependency>
272                 <groupId>jfree</groupId>
273                 <artifactId>jfreechart</artifactId>
274                 <version>1.0.1</version>
275             </dependency>
276             <dependency>
277                 <groupId>jfree</groupId>
278                 <artifactId>jcommon</artifactId>
279                 <version>1.0.2</version>
280             </dependency>
281
282             <dependency>
283                 <groupId>javaee</groupId>
284                 <artifactId>javaee-api</artifactId>
285                 <version>5</version>
286                 <scope>provided</scope>
287             </dependency>
288
289             <dependency>
290                 <groupId>commons-codec</groupId>
291                 <artifactId>commons-codec</artifactId>
292                 <version>1.3</version>
293             </dependency>
294
295
296         </dependencies>
297     </dependencyManagement>
298
299     <build>
300         <plugins>
301             <plugin>
302                 <groupId>org.apache.maven.plugins</groupId>
303                 <artifactId>maven-compiler-plugin</artifactId>
304                 <configuration>
305                     <source>1.6</source>
306                     <target>1.6</target>
307                 </configuration>
308             </plugin>
309
310             <plugin>
311                 <groupId>org.apache.maven.plugins</groupId>
312                 <artifactId>maven-surefire-plugin</artifactId>
313                 <configuration>
314                     <includes>
315                         <include>**/*Test.java</include>
316                     </includes>
317                 </configuration>
318             </plugin>
319
320             <!-- Make sure other projects can use (or the test support
321            and test classes from the projects it uses. To use
322            a dependence on a test library of a project, an additinoal
323            dependence must be added with <type>test-jar</type>
324         -->
325
326             <plugin>
327                 <groupId>org.apache.maven.plugins</groupId>
328                 <artifactId>maven-jar-plugin</artifactId>
329                 <executions>
330                     <execution>
331                         <goals>
332                             <goal>test-jar</goal>
333                         </goals>
334                     </execution>
335                 </executions>
336             </plugin>
337             
338             <plugin>
339                 <groupId>org.codehaus.mojo</groupId>
340                 <artifactId>cobertura-maven-plugin</artifactId>
341                 <executions>
342                     <execution>
343                         <goals>
344                             <goal>clean</goal>
345                         </goals>
346                     </execution>
347                 </executions>
348             </plugin>
349             
350
351         </plugins>
352         
353     </build>
354
355     <reporting>
356         <plugins>
357             <plugin>
358                 <groupId>org.apache.maven.plugins</groupId>
359                 <artifactId>maven-project-info-reports-plugin</artifactId>
360                 <reportSets>
361                     <reportSet>
362                         <reports>
363                             <report>checkstyle</report>
364                             <report>javadoc</report>
365                             <report>dependencies</report>
366                             <report>project-team</report>
367                             <report>mailing-list</report>
368                             <report>issue-tracking</report>
369                             <report>license</report>
370                             <report>scm</report>
371                         </reports>
372                     </reportSet>
373                 </reportSets>
374             </plugin>
375             <plugin>
376                 <groupId>org.codehaus.mojo</groupId>
377                 <artifactId>changes-maven-plugin</artifactId>
378                 <version>2.0-beta-1</version>
379                 <reportSets>
380                     <reportSet>
381                         <reports>
382                             <report>changes-report</report>
383                         </reports>
384                     </reportSet>
385                 </reportSets>
386             </plugin>
387             <plugin>
388                 <groupId>org.apache.maven.plugins</groupId>
389                 <artifactId>maven-javadoc-plugin</artifactId>
390             </plugin>
391             <plugin>
392                 <groupId>org.codehaus.mojo</groupId>
393                 <artifactId>surefire-report-maven-plugin</artifactId>
394             </plugin>
395             <!-- Test coverage reporting -->
396             <plugin>
397                 <groupId>org.codehaus.mojo</groupId>
398                 <artifactId>cobertura-maven-plugin</artifactId>
399                 <configuration>
400                   <formats>
401                     <format>xml</format>
402                   </formats>
403                 </configuration>
404             </plugin>
405
406             <!-- checkstyle -->
407             <plugin>
408                 <groupId>org.apache.maven.plugins</groupId>
409                 <artifactId>maven-checkstyle-plugin</artifactId>
410                 <configuration>
411                     <configLocation>config/sun_checks.xml</configLocation>
412                 </configuration>
413             </plugin>
414
415             <!-- taglist -->
416             <plugin>
417                 <groupId>org.codehaus.mojo</groupId>
418                 <artifactId>taglist-maven-plugin</artifactId>
419                 <configuration>
420                     <tags>
421                         <tag>TODO</tag>
422                         <tag>@todo</tag>
423                         <tag>FIXME</tag>
424                     </tags>
425                 </configuration>
426             </plugin>
427
428         </plugins>
429     </reporting>
430
431     <repositories>
432         <repository>
433             <id>javaee</id>
434             <name>Java EE repo at SUN</name>
435             <url>http://download.java.net/maven/1</url>
436             <layout>legacy</layout>
437         </repository>
438     </repositories>
439
440     <properties>
441         <springversion>2.0.8</springversion>
442     </properties>
443
444 </project>