59b63ee012a7f9f8f5e073a336c5f897ae8ec356
[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-utils</artifactId>
7         <version>0.6-SNAPSHOT</version>
8                 <relativePath>../..</relativePath>
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-usermgt</artifactId>
22             <version>0.6-SNAPSHOT</version>
23         </dependency>
24         <dependency>
25             <groupId>org.wamblee</groupId>
26             <artifactId>wamblee-security-usermgt</artifactId>
27             <version>0.6-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.6-SNAPSHOT</version>
36             <scope>compile</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.6-SNAPSHOT</version>
51                     <scope>test</scope>
52                 </dependency>
53                 <dependency>
54                     <groupId>org.eclipse.persistence</groupId>
55                     <artifactId>javax.persistence</artifactId>
56                     <version>2.0.0</version>
57                 </dependency>
58
59                 <dependency>
60                     <groupId>org.eclipse.persistence</groupId>
61                     <artifactId>eclipselink</artifactId>
62                 </dependency>
63             </dependencies>
64             <repositories>
65                 <repository>
66                     <id>EclipseLink Repo</id>
67                     <url>http://www.eclipse.org/downloads/download.php?r=1&amp;nf=1&amp;file=/rt/eclipselink/maven.repo</url>
68                 </repository>
69             </repositories>
70
71         </profile>
72         <profile>
73             <id>hibernate</id>
74             <dependencies>
75                 <dependency>
76                     <groupId>org.hibernate</groupId>
77                     <artifactId>hibernate-entitymanager</artifactId>
78                     <version>3.5.0-Final</version>
79                     <exclusions>
80                         <exclusion>
81                             <groupId>javax.transaction</groupId>
82                             <artifactId>jta</artifactId>
83                         </exclusion>
84                     </exclusions>
85                 </dependency>
86                 <dependency>
87                     <groupId>org.wamblee</groupId>
88                     <artifactId>wamblee-test-hibernate</artifactId>
89                     <version>0.6-SNAPSHOT</version>
90                     <scope>test</scope>
91                 </dependency>
92             </dependencies>
93             <repositories>
94                 <repository>
95                     <id>jboss</id>
96                     <name>JBoss Repo</name>
97                     <url>http://repository.jboss.org/maven2</url>
98                 </repository>
99             </repositories>
100         </profile>
101     </profiles>
102
103
104 </project>