(no commit message)
[utils] / support / 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
5   <parent>
6     <groupId>org.wamblee</groupId>
7     <artifactId>utils</artifactId>
8     <version>0.2-SNAPSHOT</version>
9   </parent>
10
11   <modelVersion>4.0.0</modelVersion>
12   <groupId>org.wamblee</groupId>
13   <artifactId>support</artifactId>
14   <packaging>jar</packaging>
15   <version>0.2-SNAPSHOT</version>
16   <name>wamblee.org support library</name>
17   <url>http://wamblee.org</url>
18   <dependencies>
19     <dependency>
20       <groupId>commons-logging</groupId>
21       <artifactId>commons-logging</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>commons-beanutils</groupId>
25       <artifactId>commons-beanutils</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>springframework</groupId>
29       <artifactId>spring-beans</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>springframework</groupId>
33       <artifactId>spring-hibernate</artifactId>
34     </dependency>
35     <!-- should be possible to remove the dependence on log4j -->
36     <dependency>
37       <groupId>log4j</groupId>
38       <artifactId>log4j</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>dom4j</groupId>
42       <artifactId>dom4j</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>ehcache</groupId>
46       <artifactId>ehcache</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>xerces</groupId>
50       <artifactId>xerces</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.hibernate</groupId>
54       <artifactId>hibernate</artifactId>
55     </dependency>
56    
57
58   </dependencies>
59
60   <build>
61     <plugins>
62       <plugin>
63         <groupId>org.apache.maven.plugins</groupId>
64         <artifactId>maven-compiler-plugin</artifactId>
65         <configuration>
66           <source>1.5</source>
67           <target>1.5</target>
68         </configuration>
69       </plugin>
70
71       <plugin>
72         <groupId>org.apache.maven.plugins</groupId>
73         <artifactId>maven-surefire-plugin</artifactId>
74         <configuration>
75           <includes>
76             <include>**/*Test.java</include>
77           </includes>
78         </configuration>
79       </plugin>
80     </plugins>
81
82
83   </build>
84 </project>