[maven-release-plugin] prepare release wamblee-utils-0.4.1
[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.4.1</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>org.apache.derby</groupId>
30       <artifactId>derby</artifactId>
31       <scope>test</scope>
32     </dependency>
33     <dependency>
34       <groupId>org.apache.derby</groupId>
35       <artifactId>derbyclient</artifactId>
36       <scope>test</scope>
37     </dependency>
38     <dependency>
39       <groupId>org.apache.derby</groupId>
40       <artifactId>derbynet</artifactId>
41       <scope>test</scope>
42     </dependency>
43     
44     <dependency>
45       <groupId>dom4j</groupId>
46       <artifactId>dom4j</artifactId>
47       <optional>true</optional>
48     </dependency>
49     <dependency>
50       <groupId>net.sf.ehcache</groupId>
51       <artifactId>ehcache</artifactId>
52       <optional>true</optional>
53     </dependency>
54     <dependency>
55       <groupId>jaxen</groupId>
56       <artifactId>jaxen</artifactId>
57       <optional>true</optional>
58     </dependency>
59   </dependencies>
60   
61   <distributionManagement>
62     <site>
63       <id>support-general</id>
64       <url>file:${distrib}/support/general</url>
65     </site>
66   </distributionManagement>
67
68 </project>