[maven-release-plugin] prepare release wamblee-utils-0.3
[utils] / security / jpatest / pom.xml
index 8f6c80316c7279d181308f97dbb8a66a6bf36d40..e59122443d9c6fccca46c7f36cc1b8610238a895 100644 (file)
+<?xml version="1.0"?>
 <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">
 
-  <parent>
+    <parent>
+        <groupId>org.wamblee</groupId>
+        <artifactId>wamblee-utils</artifactId>
+        <version>0.3</version>
+    </parent>
+
+    <modelVersion>4.0.0</modelVersion>
     <groupId>org.wamblee</groupId>
-    <artifactId>wamblee-utils</artifactId>
-    <version>0.2.2</version>
-  </parent>
+    <artifactId>wamblee-security-jpatest</artifactId>
+    <packaging>jar</packaging>
+    <name>/security/jpatest</name>
+    <url>http://wamblee.org</url>
+    <dependencies>
+
+        <dependency>
+            <groupId>org.wamblee</groupId>
+            <artifactId>wamblee-security-usermgt</artifactId>
+            <version>0.3</version>
+        </dependency>
+        <dependency>
+            <groupId>org.wamblee</groupId>
+            <artifactId>wamblee-security-usermgt</artifactId>
+            <version>0.3</version>
+            <type>test-jar</type>
+            <scope>test</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.wamblee</groupId>
+            <artifactId>wamblee-test-enterprise</artifactId>
+            <version>0.3</version>
+            <scope>test</scope>
+        </dependency>
+
+    </dependencies>
+    <profiles>
+        <profile>
+            <id>eclipselink</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+            <dependencies>
+                <dependency>
+                    <groupId>org.wamblee</groupId>
+                    <artifactId>wamblee-test-eclipselink</artifactId>
+                    <version>0.2.5-SNAPSHOT</version>
+                    <scope>test</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.eclipse.persistence</groupId>
+                    <artifactId>javax.persistence</artifactId>
+                    <version>2.0.0</version>
+                </dependency>
 
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.wamblee</groupId>
-  <artifactId>wamblee-security-jpatest</artifactId>
-  <packaging>jar</packaging>
-  <name>/security/jpatest</name>
-  <url>http://wamblee.org</url>
-  <dependencies>
+                <dependency>
+                    <groupId>org.eclipse.persistence</groupId>
+                    <artifactId>eclipselink</artifactId>
+                </dependency>
+            </dependencies>
+            <repositories>
+                <repository>
+                    <id>EclipseLink Repo</id>
+                    <url>http://www.eclipse.org/downloads/download.php?r=1&amp;nf=1&amp;file=/rt/eclipselink/maven.repo</url>
+                </repository>
+            </repositories>
 
-    <dependency>
-      <groupId>org.hibernate</groupId>
-      <artifactId>hibernate-entitymanager</artifactId>
-      <version>3.5.0-Final</version>
-      <exclusions>
-        <exclusion>
-          <groupId>javax.transaction</groupId>
-          <artifactId>jta</artifactId>
-        </exclusion>
-      </exclusions>
-    </dependency>
-    <dependency>
-      <groupId>org.wamblee</groupId>
-      <artifactId>wamblee-security-impl</artifactId>
-      <version>0.2.2</version>
-    </dependency>
-    <dependency>
-      <groupId>org.wamblee</groupId>
-      <artifactId>wamblee-security-impl</artifactId>
-      <version>0.2.2</version>
-      <type>test-jar</type>
-      <scope>test</scope>
-    </dependency>
-   
-    <dependency>
-      <groupId>org.wamblee</groupId>
-      <artifactId>wamblee-test-enterprise</artifactId>
-      <version>0.2.2</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.wamblee</groupId>
-      <artifactId>wamblee-test-hibernate</artifactId>
-      <version>0.2.2</version>
-      <scope>test</scope>
-    </dependency>
-  
-  </dependencies>
+        </profile>
+        <profile>
+            <id>hibernate</id>
+            <dependencies>
+                <dependency>
+                    <groupId>org.hibernate</groupId>
+                    <artifactId>hibernate-entitymanager</artifactId>
+                    <version>3.5.0-Final</version>
+                    <exclusions>
+                        <exclusion>
+                            <groupId>javax.transaction</groupId>
+                            <artifactId>jta</artifactId>
+                        </exclusion>
+                    </exclusions>
+                </dependency>
+                <dependency>
+                    <groupId>org.wamblee</groupId>
+                    <artifactId>wamblee-test-hibernate</artifactId>
+                    <version>0.2.5-SNAPSHOT</version>
+                    <scope>test</scope>
+                </dependency>
+            </dependencies>
+            <repositories>
+                <repository>
+                    <id>jboss</id>
+                    <name>JBoss Repo</name>
+                    <url>http://repository.jboss.org/maven2</url>
+                </repository>
+            </repositories>
+        </profile>
+    </profiles>
 
-  <repositories>
-    <repository>
-      <id>jboss</id>
-      <name>JBoss Repo</name>
-      <url>http://repository.jboss.org/maven2</url>
-    </repository>
-  </repositories>
 
 </project>