[maven-release-plugin] prepare for next development iteration
[utils] / security / jpatest / 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-security</artifactId>
7         <version>0.8-SNAPSHOT</version>
8     </parent>
9
10     <modelVersion>4.0.0</modelVersion>
11     <groupId>org.wamblee</groupId>
12     <artifactId>wamblee-security-jpatest</artifactId>
13     <packaging>jar</packaging>
14     <name>/security/jpatest</name>
15     <url>http://wamblee.org</url>
16     <dependencies>
17
18         <dependency>
19             <groupId>org.wamblee</groupId>
20             <artifactId>wamblee-security-usermgt</artifactId>
21             <version>0.8-SNAPSHOT</version>
22         </dependency>
23         <dependency>
24             <groupId>org.wamblee</groupId>
25             <artifactId>wamblee-security-usermgt</artifactId>
26             <version>0.8-SNAPSHOT</version>
27             <type>test-jar</type>
28             <scope>test</scope>
29         </dependency>
30
31         <dependency>
32             <groupId>org.wamblee</groupId>
33             <artifactId>wamblee-test-enterprise</artifactId>
34             <version>0.8-SNAPSHOT</version>
35             <scope>compile</scope>
36         </dependency>
37
38     </dependencies>
39     <dependencyManagement>
40         <dependencies>
41             <dependency>
42                 <groupId>org.wamblee</groupId>
43                 <artifactId>wamblee-test-eclipselink</artifactId>
44                 <version>0.8-SNAPSHOT</version>
45                 <scope>test</scope>
46             </dependency>
47         </dependencies>
48     </dependencyManagement>
49     <profiles>
50         <profile>
51             <id>eclipselink</id>
52             <activation>
53                 <activeByDefault>true</activeByDefault>
54             </activation>
55             <dependencies>
56                 <dependency>
57                     <groupId>org.wamblee</groupId>
58                     <artifactId>wamblee-test-eclipselink</artifactId>
59                     <scope>test</scope>
60                 </dependency>
61                 <dependency>
62                     <groupId>org.eclipse.persistence</groupId>
63                     <artifactId>javax.persistence</artifactId>
64                     <version>2.0.0</version>
65                 </dependency>
66
67                 <dependency>
68                     <groupId>org.eclipse.persistence</groupId>
69                     <artifactId>eclipselink</artifactId>
70                 </dependency>
71             </dependencies>
72             <repositories>
73                 <repository>
74                     <id>EclipseLink Repo</id>
75                     <url>http://www.eclipse.org/downloads/download.php?r=1&amp;nf=1&amp;file=/rt/eclipselink/maven.repo</url>
76                 </repository>
77             </repositories>
78
79         </profile>
80         <profile>
81             <id>hibernate</id>
82             <dependencies>
83                 <dependency>
84                     <groupId>org.hibernate</groupId>
85                     <artifactId>hibernate-entitymanager</artifactId>
86                     <version>3.5.0-Final</version>
87                     <exclusions>
88                         <exclusion>
89                             <groupId>javax.transaction</groupId>
90                             <artifactId>jta</artifactId>
91                         </exclusion>
92                     </exclusions>
93                 </dependency>
94                 <dependency>
95                     <groupId>org.wamblee</groupId>
96                     <artifactId>wamblee-test-hibernate</artifactId>
97                     <version>0.6-SNAPSHOT</version>
98                     <scope>test</scope>
99                 </dependency>
100             </dependencies>
101             <repositories>
102                 <repository>
103                     <id>jboss</id>
104                     <name>JBoss Repo</name>
105                     <url>http://repository.jboss.org/maven2</url>
106                 </repository>
107             </repositories>
108         </profile>
109     </profiles>
110
111
112 </project>