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