[maven-release-plugin] prepare release wamblee-utils-0.2.3
[utils] / security / jpatest / pom.xml
1 <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">
2
3     <parent>
4         <groupId>org.wamblee</groupId>
5         <artifactId>wamblee-utils</artifactId>
6         <version>0.2.3</version>
7     </parent>
8
9     <modelVersion>4.0.0</modelVersion>
10     <groupId>org.wamblee</groupId>
11     <artifactId>wamblee-security-jpatest</artifactId>
12     <packaging>jar</packaging>
13     <name>/security/jpatest</name>
14     <url>http://wamblee.org</url>
15     <dependencies>
16
17         <dependency>
18             <groupId>org.wamblee</groupId>
19             <artifactId>wamblee-security-impl</artifactId>
20             <version>0.2.3</version>
21         </dependency>
22         <dependency>
23             <groupId>org.wamblee</groupId>
24             <artifactId>wamblee-security-impl</artifactId>
25             <version>0.2.3</version>
26             <type>test-jar</type>
27             <scope>test</scope>
28         </dependency>
29        
30         <dependency>
31             <groupId>org.wamblee</groupId>
32             <artifactId>wamblee-test-enterprise</artifactId>
33             <version>0.2.3</version>
34             <scope>test</scope>
35         </dependency>
36
37     </dependencies>
38     <profiles>
39         <profile>
40             <id>eclipselink</id>
41             <activation>
42                 <activeByDefault>true</activeByDefault>
43             </activation>
44             <dependencies>
45                 <dependency>
46                     <groupId>org.wamblee</groupId>
47                     <artifactId>wamblee-test-eclipselink</artifactId>
48                     <version>0.2.3-SNAPSHOT</version>
49                     <scope>test</scope>
50                 </dependency>
51             </dependencies>
52             <repositories>
53                 <repository>
54                     <id>jboss</id>
55                     <name>JBoss Repo</name>
56                     <url>http://repository.jboss.org/maven2</url>
57                 </repository>
58             </repositories>        
59         </profile>
60         <profile>
61             <id>hibernate</id>
62             <dependencies>
63                 <dependency>
64                     <groupId>org.hibernate</groupId>
65                     <artifactId>hibernate-entitymanager</artifactId>
66                     <version>3.5.0-Final</version>
67                     <exclusions>
68                         <exclusion>
69                             <groupId>javax.transaction</groupId>
70                             <artifactId>jta</artifactId>
71                         </exclusion>
72                     </exclusions>
73                 </dependency>
74                 <dependency>
75                     <groupId>org.wamblee</groupId>
76                     <artifactId>wamblee-test-hibernate</artifactId>
77                     <version>0.2.3-SNAPSHOT</version>
78                     <scope>test</scope>
79                 </dependency>                
80             </dependencies>
81         </profile>
82     </profiles>
83     
84
85 </project>