8cd135f9d76bcf69f1687e7dd1edb777b6250a0e
[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     <relativePath>../..</relativePath>
9   </parent>
10
11   <modelVersion>4.0.0</modelVersion>
12   <groupId>org.wamblee</groupId>
13   <artifactId>wamblee-support-general</artifactId>
14   <packaging>jar</packaging>
15   <name>/support/general</name>
16   <url>http://wamblee.org</url>
17   <dependencies>
18     <dependency>
19       <groupId>javax.persistence</groupId>
20       <artifactId>persistence-api</artifactId>
21       <scope>provided</scope>
22     </dependency>
23     <dependency>
24       <groupId>javax</groupId>
25       <artifactId>javaee-api</artifactId>
26       <scope>provided</scope>
27     </dependency>
28     
29     <dependency>
30       <groupId>net.sf.ehcache</groupId>
31       <artifactId>ehcache-core</artifactId>
32       <optional>true</optional>
33     </dependency>
34     
35     <dependency>
36       <groupId>dom4j</groupId>
37       <artifactId>dom4j</artifactId>
38       <scope>test</scope>
39     </dependency>
40    
41     <dependency>
42       <groupId>jaxen</groupId>
43       <artifactId>jaxen</artifactId>
44       <optional>true</optional>
45       <scope>test</scope>
46     </dependency>
47     
48   </dependencies>
49   
50   <distributionManagement>
51     <site>
52       <id>support-general</id>
53       <url>file:${distrib}/support/general</url>
54     </site>
55   </distributionManagement>
56
57 </project>