The next steps towards making it deployable on the central maven repo.
[utils] / support / test / 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>wamblee-utils</artifactId>
8     <version>0.2-SNAPSHOT</version>
9   </parent>
10
11   <modelVersion>4.0.0</modelVersion>
12   <groupId>org.wamblee</groupId>
13   <artifactId>wamblee-support-test</artifactId>
14   <packaging>pom</packaging>
15   <name>/support/test</name>
16   <url>http://wamblee.org</url>
17
18   <modules>
19     <module>enterprise</module>
20     <module>hibernate</module>
21   </modules>
22
23   <profiles>
24     <profile>
25       <id>all</id>
26       <activation>
27         <property>
28           <name>!wamblee.release</name>
29         </property>
30       </activation>
31       <modules>
32         <module>eclipselink</module>
33         <module>toplink-essentials</module>
34       </modules>
35     </profile>
36   </profiles>
37
38 </project>