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