dependencies now in root pom
[utils] / pom.xml
1 <?xml version="1.0"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6     <groupId>org.wamblee</groupId>
7     <artifactId>wamblee-utils</artifactId>
8     <packaging>pom</packaging>
9     <version>0.2.5-SNAPSHOT</version>
10     <name>/</name>
11     <description>wamblee.org utilities library</description>
12     <url>http://wamblee.org</url>
13     <licenses>
14         <license>
15             <name>The Apache Software License, Version 2.0</name>
16             <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
17             <distribution>repo</distribution>
18         </license>
19     </licenses>
20     <scm>
21         <url>https://wamblee.org/viewvc/utils</url>
22         <connection>scm:svn:https://wamblee.org/svn/public/utils/trunk</connection>
23         <developerConnection>scm:svn:https://wamblee.org/svn/public/utils/trunk</developerConnection>
24     </scm>
25     <developers>
26         <developer>
27             <email>erik@wamblee.org</email>
28             <name>Erik Brakkee</name>
29             <url>http://brakkee.org</url>
30         </developer>
31     </developers>
32
33     <modules>
34         <module>support</module>
35         <module>system</module>
36         <module>hibernate-jpa</module>
37         <module>security</module>
38         <module>test</module>
39     </modules>
40     <dependencies>
41         <dependency>
42             <groupId>junit</groupId>
43             <artifactId>junit</artifactId>
44             <scope>test</scope>
45         </dependency>
46         <dependency>
47             <groupId>org.dbunit</groupId>
48             <artifactId>dbunit</artifactId>
49             <scope>test</scope>
50         </dependency>
51         <dependency>
52             <groupId>org.apache.derby</groupId>
53             <artifactId>derby</artifactId>
54             <scope>test</scope>
55         </dependency>
56         <dependency>
57             <groupId>org.apache.derby</groupId>
58             <artifactId>derbyclient</artifactId>
59             <scope>test</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.apache.derby</groupId>
63             <artifactId>derbynet</artifactId>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>org.slf4j</groupId>
68             <artifactId>slf4j-api</artifactId>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>org.slf4j</groupId>
73             <artifactId>slf4j-jdk14</artifactId>
74             <scope>test</scope>
75         </dependency>
76
77         <dependency>
78             <groupId>mysql</groupId>
79             <artifactId>mysql-connector-java</artifactId>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.mockito</groupId>
84             <artifactId>mockito-all</artifactId>
85             <version>1.8.5</version>
86             <scope>test</scope>
87         </dependency>
88
89         <!-- dependency>
90           <groupId>org.testng</groupId>
91           <artifactId>testng</artifactId>
92           <version>5.7</version>
93           <scope>test</scope>
94           <classifier>jdk15</classifier>
95         </dependency -->
96     </dependencies>
97
98     <dependencyManagement>
99         <dependencies>
100
101             <dependency>
102                 <groupId>org.jboss.weld</groupId>
103                 <artifactId>weld-se</artifactId>
104                 <version>1.0.1-Final</version>
105                 <scope>provided</scope>
106             </dependency>
107             
108             <dependency>
109                 <groupId>oro</groupId>
110                 <artifactId>oro</artifactId>
111                 <version>2.0.6</version>
112             </dependency>
113
114
115             <dependency>
116                 <groupId>javax.transaction</groupId>
117                 <artifactId>transaction-api</artifactId>
118                 <version>1.1</version>
119             </dependency>
120
121             <dependency>
122                 <groupId>junit</groupId>
123                 <artifactId>junit</artifactId>
124                 <version>4.4</version>
125             </dependency>
126             <dependency>
127                 <groupId>org.dbunit</groupId>
128                 <artifactId>dbunit</artifactId>
129                 <version>2.4.7</version>
130             </dependency>
131             <dependency>
132                 <groupId>org.slf4j</groupId>
133                 <artifactId>slf4j-api</artifactId>
134                 <version>1.5.11</version>
135             </dependency>
136             <dependency>
137                 <groupId>org.slf4j</groupId>
138                 <artifactId>slf4j-jdk14</artifactId>
139                 <version>1.5.11</version>
140             </dependency>
141
142             <dependency>
143                 <groupId>javax.persistence</groupId>
144                 <artifactId>persistence-api</artifactId>
145                 <version>1.0</version>
146                 <scope>provided</scope>
147             </dependency>
148             <dependency>
149                 <groupId>javax.activation</groupId>
150                 <artifactId>activation</artifactId>
151                 <version>1.1</version>
152             </dependency>
153             <dependency>
154                 <groupId>javax.mail</groupId>
155                 <artifactId>mail</artifactId>
156                 <version>1.4.1</version>
157             </dependency>
158             <dependency>
159                 <groupId>javax.servlet</groupId>
160                 <artifactId>servlet-api</artifactId>
161                 <version>2.3</version>
162                 <type>jar</type>
163                 <scope>provided</scope>
164             </dependency>
165             <dependency>
166                 <groupId>mysql</groupId>
167                 <artifactId>mysql-connector-java</artifactId>
168                 <version>5.1.12</version>
169             </dependency>
170             <dependency>
171                 <groupId>org.apache.derby</groupId>
172                 <artifactId>derby</artifactId>
173                 <version>10.5.3.0_1</version>
174             </dependency>
175             <dependency>
176                 <groupId>org.apache.derby</groupId>
177                 <artifactId>derbyclient</artifactId>
178                 <version>10.5.3.0_1</version>
179             </dependency>
180             <dependency>
181                 <groupId>org.apache.derby</groupId>
182                 <artifactId>derbynet</artifactId>
183                 <version>10.5.3.0_1</version>
184             </dependency>
185             <dependency>
186                 <groupId>quartz</groupId>
187                 <artifactId>quartz</artifactId>
188                 <version>1.5.1</version>
189             </dependency>
190             <dependency>
191                 <groupId>jtidy</groupId>
192                 <artifactId>jtidy</artifactId>
193                 <version>4aug2000r7-dev</version>
194             </dependency>
195
196
197             <dependency>
198                 <groupId>commons-logging</groupId>
199                 <artifactId>commons-logging</artifactId>
200                 <version>1.0.2</version>
201             </dependency>
202             <dependency>
203                 <groupId>commons-httpclient</groupId>
204                 <artifactId>commons-httpclient</artifactId>
205                 <version>3.0</version>
206             </dependency>
207             <dependency>
208                 <groupId>commons-beanutils</groupId>
209                 <artifactId>commons-beanutils</artifactId>
210                 <version>1.7.0</version>
211             </dependency>
212             <dependency>
213                 <groupId>org.springframework</groupId>
214                 <artifactId>spring-beans</artifactId>
215                 <version>${spring.version}</version>
216             </dependency>
217             <dependency>
218                 <groupId>org.springframework</groupId>
219                 <artifactId>spring-web</artifactId>
220                 <version>${spring.version}</version>
221             </dependency>
222             <dependency>
223                 <groupId>org.springframework</groupId>
224                 <artifactId>spring-jms</artifactId>
225                 <version>${spring.version}</version>
226             </dependency>
227             <dependency>
228                 <groupId>org.springframework</groupId>
229                 <artifactId>spring-context</artifactId>
230                 <version>${spring.version}</version>
231             </dependency>
232             <dependency>
233                 <groupId>org.springframework</groupId>
234                 <artifactId>spring-hibernate3</artifactId>
235                 <version>${spring.version}</version>
236             </dependency>
237             <dependency>
238                 <groupId>org.springframework</groupId>
239                 <artifactId>spring-jpa</artifactId>
240                 <version>${spring.version}</version>
241             </dependency>
242             <dependency>
243                 <groupId>org.springframework</groupId>
244                 <artifactId>spring-aop</artifactId>
245                 <version>${spring.version}</version>
246             </dependency>
247
248             <dependency>
249                 <groupId>dom4j</groupId>
250                 <artifactId>dom4j</artifactId>
251                 <version>1.6</version>
252                 <exclusions>
253                     <exclusion>
254                         <groupId>xml-apis</groupId>
255                         <artifactId>xml-apis</artifactId>
256                     </exclusion>
257                 </exclusions>
258             </dependency>
259             <dependency>
260                 <groupId>net.sf.ehcache</groupId>
261                 <artifactId>ehcache</artifactId>
262                 <version>1.2.3</version>
263             </dependency>
264
265             <dependency>
266                 <groupId>commons-email</groupId>
267                 <artifactId>commons-email</artifactId>
268                 <version>1.0</version>
269             </dependency>
270             <dependency>
271                 <groupId>jaxen</groupId>
272                 <artifactId>jaxen</artifactId>
273                 <version>1.1-beta-9</version>
274                 <exclusions>
275                     <exclusion>
276                         <groupId>xom</groupId>
277                         <artifactId>xom</artifactId>
278                     </exclusion>
279                     <exclusion>
280                         <groupId>xerces</groupId>
281                         <artifactId>xmlParserAPIs</artifactId>
282                     </exclusion>
283                 </exclusions>
284             </dependency>
285             <dependency>
286                 <groupId>jstl</groupId>
287                 <artifactId>jstl</artifactId>
288                 <version>1.1.2</version>
289             </dependency>
290             <dependency>
291                 <groupId>taglibs</groupId>
292                 <artifactId>standard</artifactId>
293                 <version>1.1.2</version>
294             </dependency>
295             <dependency>
296                 <groupId>jfree</groupId>
297                 <artifactId>jfreechart</artifactId>
298                 <version>1.0.1</version>
299             </dependency>
300             <dependency>
301                 <groupId>jfree</groupId>
302                 <artifactId>jcommon</artifactId>
303                 <version>1.0.2</version>
304             </dependency>
305
306             <dependency>
307                 <groupId>javax</groupId>
308                 <artifactId>javaee-api</artifactId>
309                 <version>6.0</version>
310                 <scope>provided</scope>
311             </dependency>
312
313             <dependency>
314                 <groupId>commons-codec</groupId>
315                 <artifactId>commons-codec</artifactId>
316                 <version>1.3</version>
317             </dependency>
318
319             <dependency>
320                 <groupId>commons-dbcp</groupId>
321                 <artifactId>commons-dbcp</artifactId>
322                 <version>1.4</version>
323             </dependency>
324             <dependency>
325                 <groupId>toplink.essentials</groupId>
326                 <artifactId>toplink-essentials</artifactId>
327                 <version>2.1-60f</version>
328             </dependency>
329             <dependency>
330                 <groupId>org.eclipse.persistence</groupId>
331                 <artifactId>eclipselink</artifactId>
332                 <version>2.0.2</version>
333                 <scope>compile</scope>
334             </dependency>
335
336         </dependencies>
337     </dependencyManagement>
338
339     <build>
340         <plugins>
341             <plugin>
342                 <groupId>org.apache.maven.plugins</groupId>
343                 <artifactId>maven-release-plugin</artifactId>
344                 <version>2.0</version>
345                 <configuration>
346                     <autoVersionSubmodules>true</autoVersionSubmodules>
347                     <goals>javadoc:jar deploy</goals>
348                 </configuration>
349             </plugin>
350             <plugin>
351                 <groupId>org.apache.maven.plugins</groupId>
352                 <artifactId>maven-checkstyle-plugin</artifactId>
353                 <version>2.5</version>
354                 <dependencies>
355                     <dependency>
356                         <groupId>org.wamblee</groupId>
357                         <artifactId>wamblee-code-style</artifactId>
358                         <version>1.1</version>
359                     </dependency>
360                 </dependencies>
361             </plugin>
362
363             <plugin>
364                 <groupId>org.codehaus.mojo</groupId>
365                 <artifactId>jalopy-maven-plugin</artifactId>
366                 <configuration>
367                     <fileFormat>UNIX</fileFormat>
368                     <convention>org.wamblee.jalopy.xml</convention>
369                 </configuration>
370                 <dependencies>
371                     <dependency>
372                         <groupId>org.wamblee</groupId>
373                         <artifactId>wamblee-code-style</artifactId>
374                         <version>1.1</version>
375                     </dependency>
376                 </dependencies>
377             </plugin>
378             <plugin>
379                 <groupId>org.apache.maven.plugins</groupId>
380                 <artifactId>maven-compiler-plugin</artifactId>
381                 <configuration>
382                     <source>1.6</source>
383                     <target>1.6</target>
384                 </configuration>
385             </plugin>
386
387             <plugin>
388                 <groupId>org.apache.maven.plugins</groupId>
389                 <artifactId>maven-surefire-plugin</artifactId>
390                 <configuration>
391                     <includes>
392                         <include>**/*Test.java</include>
393                     </includes>
394                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
395                 </configuration>
396             </plugin>
397
398             <!-- Make sure other projects can use (or the test support
399            and test classes from the projects it uses. To use
400            a dependence on a test library of a project, an additinoal
401            dependence must be added with <type>test-jar</type>
402         -->
403
404             <plugin>
405                 <groupId>org.apache.maven.plugins</groupId>
406                 <artifactId>maven-jar-plugin</artifactId>
407                 <executions>
408                     <execution>
409                         <goals>
410                             <goal>test-jar</goal>
411                         </goals>
412                     </execution>
413                 </executions>
414             </plugin>
415
416             <plugin>
417                 <groupId>org.codehaus.mojo</groupId>
418                 <artifactId>cobertura-maven-plugin</artifactId>
419                 <version>2.3</version>
420                 <executions>
421                     <execution>
422                         <goals>
423                             <goal>clean</goal>
424                         </goals>
425                     </execution>
426                 </executions>
427                 <configuration>
428                     <instrumentation>
429                         <excludes> </excludes>
430                     </instrumentation>
431                 </configuration>
432             </plugin>
433             <plugin>
434                 <artifactId>maven-site-plugin</artifactId>
435                 <configuration>
436                     <locales>en</locales>
437                 </configuration>
438             </plugin>
439
440
441         </plugins>
442
443         <pluginManagement>
444             <plugins>
445                 <plugin>
446                     <artifactId>maven-site-plugin</artifactId>
447                     <version>2.1.1</version>
448                 </plugin>
449             </plugins>
450         </pluginManagement>
451
452     </build>
453
454
455     <reporting>
456         <plugins>
457             <plugin>
458                 <groupId>org.apache.maven.plugins</groupId>
459                 <artifactId>maven-project-info-reports-plugin</artifactId>
460                 <reportSets>
461                     <reportSet>
462                         <reports>
463                             <report>checkstyle</report>
464                             <report>javadoc</report>
465                             <report>dependencies</report>
466                             <report>project-team</report>
467                             <report>mailing-list</report>
468                             <report>issue-tracking</report>
469                             <report>license</report>
470                             <report>scm</report>
471                         </reports>
472                     </reportSet>
473                 </reportSets>
474             </plugin>
475             <plugin>
476                 <groupId>org.codehaus.mojo</groupId>
477                 <artifactId>findbugs-maven-plugin</artifactId>
478                 <version>2.3.1</version>
479                 <configuration>
480                     <xmlOutput>true</xmlOutput>
481                     <!-- Optional derectory to put findbugs xdoc xml report -->
482                     <xmlOutputDirectory>target/site</xmlOutputDirectory>
483                     <findbugsXmlOutput>true</findbugsXmlOutput>
484                     <!-- Optional directory to put findbugs xml report -->
485                     <findbugsXmlOutputDirectory>target/site</findbugsXmlOutputDirectory>
486                 </configuration>
487
488             </plugin>
489
490             <plugin>
491                 <groupId>org.codehaus.mojo</groupId>
492                 <artifactId>changes-maven-plugin</artifactId>
493                 <version>2.0-beta-1</version>
494                 <reportSets>
495                     <reportSet>
496                         <reports>
497                             <report>changes-report</report>
498                         </reports>
499                     </reportSet>
500                 </reportSets>
501             </plugin>
502             <plugin>
503                 <groupId>org.apache.maven.plugins</groupId>
504                 <artifactId>maven-javadoc-plugin</artifactId>
505                 <version>2.7</version>
506             </plugin>
507             <plugin>
508                 <groupId>org.codehaus.mojo</groupId>
509                 <artifactId>surefire-report-maven-plugin</artifactId>
510             </plugin>
511             <!-- Test coverage reporting -->
512             <plugin>
513                 <groupId>org.codehaus.mojo</groupId>
514                 <artifactId>cobertura-maven-plugin</artifactId>
515                 <version>2.3</version>
516                 <configuration>
517                     <formats>
518                         <format>xml</format>
519                         <format>html</format>
520                     </formats>
521                 </configuration>
522             </plugin>
523
524             <!-- checkstyle -->
525             <plugin>
526                 <groupId>org.apache.maven.plugins</groupId>
527                 <artifactId>maven-checkstyle-plugin</artifactId>
528                 <version>2.5</version>
529                 <configuration>
530                     <configLocation>org.wamblee.checkstyle.xml</configLocation>
531                 </configuration>
532             </plugin>
533
534             <!-- taglist -->
535             <plugin>
536                 <groupId>org.codehaus.mojo</groupId>
537                 <artifactId>taglist-maven-plugin</artifactId>
538                 <configuration>
539                     <tags>
540                         <tag>TODO</tag>
541                         <tag>@todo</tag>
542                         <tag>FIXME</tag>
543                     </tags>
544                 </configuration>
545             </plugin>
546
547         </plugins>
548     </reporting>
549
550     <profiles>
551         <profile>
552             <id>release</id>
553             <activation>
554                 <property>
555                     <name>performRelease</name>
556                     <value>true</value>
557                 </property>
558             </activation>
559             <build>
560                 <plugins>
561                     <plugin>
562                         <groupId>org.apache.maven.plugins</groupId>
563                         <artifactId>maven-gpg-plugin</artifactId>
564                         <executions>
565                             <execution>
566                                 <id>sign-artifacts</id>
567                                 <phase>verify</phase>
568                                 <goals>
569                                     <goal>sign</goal>
570                                 </goals>
571                             </execution>
572                         </executions>
573                     </plugin>
574                 </plugins>
575             </build>
576             <distributionManagement>
577                 <repository>
578                     <id>sonatype-nexus-staging</id>
579                     <name>Nexus Release Repository</name>
580                     <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
581                 </repository>
582             </distributionManagement>
583
584         </profile>
585         <profile>
586             <id>all</id>
587             <activation>
588                 <property>
589                     <name>!performRelease</name>
590                 </property>
591             </activation>
592             <distributionManagement>
593                 <repository>
594                     <id>local</id>
595                     <name>Local directory</name>
596                     <url>file:${user.home}/java/workspace/deploy</url>
597                 </repository>
598             </distributionManagement>
599         </profile>
600     </profiles>
601
602     <distributionManagement>
603         <site>
604             <id>test-enterprise-site</id>
605             <url>file:${distrib}/main</url>
606         </site>
607     </distributionManagement>
608
609     <properties>
610         <spring.version>2.0.8</spring.version>
611         <jmock.version>2.4.0</jmock.version>
612     </properties>
613
614 </project>