927be2e3e8d8bec432638af27bfd1333dd2437cb
[utils] / support / general / pom.xml
1 <?xml version="1.0"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
4   <parent>
5     <groupId>org.wamblee</groupId>
6     <artifactId>wamblee-utils</artifactId>
7     <version>0.6-SNAPSHOT</version>
8   </parent>
9
10   <modelVersion>4.0.0</modelVersion>
11   <groupId>org.wamblee</groupId>
12   <artifactId>wamblee-support-general</artifactId>
13   <packaging>jar</packaging>
14   <name>/support/general</name>
15   <url>http://wamblee.org</url>
16   <dependencies>
17     <dependency>
18       <groupId>javax.persistence</groupId>
19       <artifactId>persistence-api</artifactId>
20       <scope>provided</scope>
21     </dependency>
22     <dependency>
23       <groupId>javax</groupId>
24       <artifactId>javaee-api</artifactId>
25       <scope>provided</scope>
26     </dependency>
27     
28     <dependency>
29       <groupId>net.sf.ehcache</groupId>
30       <artifactId>ehcache-core</artifactId>
31       <optional>true</optional>
32     </dependency>
33     
34     <dependency>
35       <groupId>dom4j</groupId>
36       <artifactId>dom4j</artifactId>
37       <scope>test</scope>
38     </dependency>
39    
40     <dependency>
41       <groupId>jaxen</groupId>
42       <artifactId>jaxen</artifactId>
43       <optional>true</optional>
44       <scope>test</scope>
45     </dependency>
46     
47   </dependencies>
48   
49   <distributionManagement>
50     <site>
51       <id>support-general</id>
52       <url>file:${distrib}/support/general</url>
53     </site>
54   </distributionManagement>
55
56 </project>