(no commit message)
[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.2.5-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</groupId>
19       <artifactId>javaee-api</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>oro</groupId>
23       <artifactId>oro</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>commons-logging</groupId>
27       <artifactId>commons-logging</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.apache.derby</groupId>
31       <artifactId>derby</artifactId>
32       <scope>test</scope>
33     </dependency>
34     <dependency>
35       <groupId>org.apache.derby</groupId>
36       <artifactId>derbyclient</artifactId>
37       <scope>test</scope>
38     </dependency>
39     <dependency>
40       <groupId>org.apache.derby</groupId>
41       <artifactId>derbynet</artifactId>
42       <scope>test</scope>
43     </dependency>
44     <dependency>
45       <groupId>commons-beanutils</groupId>
46       <artifactId>commons-beanutils</artifactId>
47     </dependency>
48     <!-- should be possible to remove the dependence on log4j -->
49     <dependency>
50       <groupId>log4j</groupId>
51       <artifactId>log4j</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>dom4j</groupId>
55       <artifactId>dom4j</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>net.sf.ehcache</groupId>
59       <artifactId>ehcache</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>jaxen</groupId>
63       <artifactId>jaxen</artifactId>
64     </dependency>
65   </dependencies>
66   
67   <distributionManagement>
68     <site>
69       <id>test-enterprise-site</id>
70       <url>file:${distrib}/support/general</url>
71     </site>
72   </distributionManagement>
73
74 </project>