[jboss-cvs] JBossAS SVN: r96409 - in projects/jpa/tags: jboss-jpa-build-1.0.1 and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Nov 16 04:42:04 EST 2009


Author: wolfc
Date: 2009-11-16 04:42:04 -0500 (Mon, 16 Nov 2009)
New Revision: 96409

Added:
   projects/jpa/tags/jboss-jpa-build-1.0.1/
   projects/jpa/tags/jboss-jpa-build-1.0.1/pom.xml
Removed:
   projects/jpa/tags/jboss-jpa-build-1.0.1/pom.xml
Log:
[maven-release-plugin]  copy for tag jboss-jpa-build-1.0.1

Copied: projects/jpa/tags/jboss-jpa-build-1.0.1 (from rev 96407, projects/jpa/trunk/build)

Deleted: projects/jpa/tags/jboss-jpa-build-1.0.1/pom.xml
===================================================================
--- projects/jpa/trunk/build/pom.xml	2009-11-16 09:10:57 UTC (rev 96407)
+++ projects/jpa/tags/jboss-jpa-build-1.0.1/pom.xml	2009-11-16 09:42:04 UTC (rev 96409)
@@ -1,142 +0,0 @@
-<!--
-  vi:ts=2:sw=2:expandtab
--->
-<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>
-    <groupId>org.jboss</groupId>
-    <artifactId>jboss-parent</artifactId>
-    <version>4.0.CR1</version>
-  </parent>
-
-  <modelVersion>4.0.0</modelVersion>
-
-  <groupId>org.jboss.jpa</groupId>
-  <artifactId>jboss-jpa-build</artifactId>
-  <version>1.0.1-SNAPSHOT</version>
-  <packaging>pom</packaging>
-  <name>JBoss Container Managed JPA Build</name>
-  <description>
-    JBoss CM JPA generic settings.
-  </description>
-
-  <scm>
-    <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/jpa/trunk</connection>
-    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/jpa/trunk</developerConnection>
-    <url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbossas/projects/jpa/trunk/</url>
-  </scm>
-
-  <build>
-    <outputDirectory>${jpa.outputDirectory}</outputDirectory>
-    <testOutputDirectory>${jpa.testOutputDirectory}</testOutputDirectory>
-
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-release-plugin</artifactId>
-        <configuration>
-          <tagBase>
-            https://svn.jboss.org/repos/jbossas/projects/jpa/tags
-          </tagBase>
-        </configuration>
-      </plugin>
-      
-      <plugin>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <redirectTestOutputToFile>true</redirectTestOutputToFile>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-
-  <profiles>
-    <profile>
-      <id>default</id>
-      <activation>
-        <activeByDefault>true</activeByDefault>
-        <property><name>!dummy</name></property>
-      </activation>
-      <properties>
-        <jpa.outputDirectory>target/classes</jpa.outputDirectory>
-        <jpa.testOutputDirectory>target/tests-classes</jpa.testOutputDirectory>
-      </properties>
-    </profile>
-    <profile>
-      <id>eclipse</id>
-      <build>
-        <defaultGoal>process-test-resources</defaultGoal>
-        <plugins>
-          <plugin>
-            <artifactId>maven-eclipse-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>eclipse</id>
-                <phase>process-test-resources</phase>
-                <goals>
-                  <goal>eclipse</goal>
-                </goals>
-              </execution>
-            </executions>
-            <configuration>
-              <downloadSources>true</downloadSources>
-              <buildOutputDirectory>${jpa.outputDirectory}</buildOutputDirectory>
-            </configuration>
-          </plugin>
-        </plugins>
-      </build>
-      <properties>
-        <jpa.outputDirectory>eclipse-target/classes</jpa.outputDirectory>
-        <jpa.testOutputDirectory>eclipse-target/tests-classes</jpa.testOutputDirectory>
-      </properties>
-    </profile>
-
-    <profile>
-      <id>JPA-1.0</id>
-      <activation>
-        <property><name>!dummy</name></property>
-      </activation>
-      <properties>
-        <JPA.groupId>org.hibernate</JPA.groupId>
-        <JPA.artifactId>ejb3-persistence</JPA.artifactId>
-        <JPA.version>1.0.2.GA</JPA.version>
-        <version.org.hibernate.hibernate-entitymanager>3.4.0.GA</version.org.hibernate.hibernate-entitymanager>
-      </properties>
-    </profile>
-    <profile>
-      <id>JPA-2.0</id>
-      <activation>
-        <property><name>JPA-2.0</name></property>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <artifactId>maven-enforcer-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>obsoletes-org.hibernate:ejb3-persistence</id>
-                <goals>
-                  <goal>enforce</goal>
-                </goals>
-                <configuration>
-                  <rules>
-                    <bannedDependencies>
-                      <excludes>
-                        <exclude>org.hibernate:ejb3-persistence</exclude>
-                      </excludes>
-                    </bannedDependencies>
-                  </rules>
-                </configuration>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-      <properties>
-        <JPA.groupId>org.hibernate.persistence</JPA.groupId>
-        <JPA.artifactId>jpa-api</JPA.artifactId>
-        <JPA.version>2.0-cr-1</JPA.version>
-        <version.org.hibernate.hibernate-entitymanager>3.5.0-Beta-2</version.org.hibernate.hibernate-entitymanager>
-      </properties>
-    </profile>
-  </profiles>
-</project>

Copied: projects/jpa/tags/jboss-jpa-build-1.0.1/pom.xml (from rev 96408, projects/jpa/trunk/build/pom.xml)
===================================================================
--- projects/jpa/tags/jboss-jpa-build-1.0.1/pom.xml	                        (rev 0)
+++ projects/jpa/tags/jboss-jpa-build-1.0.1/pom.xml	2009-11-16 09:42:04 UTC (rev 96409)
@@ -0,0 +1,142 @@
+<!--
+  vi:ts=2:sw=2:expandtab
+-->
+<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>
+    <groupId>org.jboss</groupId>
+    <artifactId>jboss-parent</artifactId>
+    <version>4.0.CR1</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.jboss.jpa</groupId>
+  <artifactId>jboss-jpa-build</artifactId>
+  <version>1.0.1</version>
+  <packaging>pom</packaging>
+  <name>JBoss Container Managed JPA Build</name>
+  <description>
+    JBoss CM JPA generic settings.
+  </description>
+
+  <scm>
+    <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/jpa/tags/jboss-jpa-build-1.0.1</connection>
+    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/jpa/tags/jboss-jpa-build-1.0.1</developerConnection>
+    <url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbossas/projects/jpa/tags/jboss-jpa-build-1.0.1</url>
+  </scm>
+
+  <build>
+    <outputDirectory>${jpa.outputDirectory}</outputDirectory>
+    <testOutputDirectory>${jpa.testOutputDirectory}</testOutputDirectory>
+
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-release-plugin</artifactId>
+        <configuration>
+          <tagBase>
+            https://svn.jboss.org/repos/jbossas/projects/jpa/tags
+          </tagBase>
+        </configuration>
+      </plugin>
+      
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <redirectTestOutputToFile>true</redirectTestOutputToFile>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <profiles>
+    <profile>
+      <id>default</id>
+      <activation>
+        <activeByDefault>true</activeByDefault>
+        <property><name>!dummy</name></property>
+      </activation>
+      <properties>
+        <jpa.outputDirectory>target/classes</jpa.outputDirectory>
+        <jpa.testOutputDirectory>target/tests-classes</jpa.testOutputDirectory>
+      </properties>
+    </profile>
+    <profile>
+      <id>eclipse</id>
+      <build>
+        <defaultGoal>process-test-resources</defaultGoal>
+        <plugins>
+          <plugin>
+            <artifactId>maven-eclipse-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>eclipse</id>
+                <phase>process-test-resources</phase>
+                <goals>
+                  <goal>eclipse</goal>
+                </goals>
+              </execution>
+            </executions>
+            <configuration>
+              <downloadSources>true</downloadSources>
+              <buildOutputDirectory>${jpa.outputDirectory}</buildOutputDirectory>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+      <properties>
+        <jpa.outputDirectory>eclipse-target/classes</jpa.outputDirectory>
+        <jpa.testOutputDirectory>eclipse-target/tests-classes</jpa.testOutputDirectory>
+      </properties>
+    </profile>
+
+    <profile>
+      <id>JPA-1.0</id>
+      <activation>
+        <property><name>!dummy</name></property>
+      </activation>
+      <properties>
+        <JPA.groupId>org.hibernate</JPA.groupId>
+        <JPA.artifactId>ejb3-persistence</JPA.artifactId>
+        <JPA.version>1.0.2.GA</JPA.version>
+        <version.org.hibernate.hibernate-entitymanager>3.4.0.GA</version.org.hibernate.hibernate-entitymanager>
+      </properties>
+    </profile>
+    <profile>
+      <id>JPA-2.0</id>
+      <activation>
+        <property><name>JPA-2.0</name></property>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-enforcer-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>obsoletes-org.hibernate:ejb3-persistence</id>
+                <goals>
+                  <goal>enforce</goal>
+                </goals>
+                <configuration>
+                  <rules>
+                    <bannedDependencies>
+                      <excludes>
+                        <exclude>org.hibernate:ejb3-persistence</exclude>
+                      </excludes>
+                    </bannedDependencies>
+                  </rules>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+      <properties>
+        <JPA.groupId>org.hibernate.persistence</JPA.groupId>
+        <JPA.artifactId>jpa-api</JPA.artifactId>
+        <JPA.version>2.0-cr-1</JPA.version>
+        <version.org.hibernate.hibernate-entitymanager>3.5.0-Beta-2</version.org.hibernate.hibernate-entitymanager>
+      </properties>
+    </profile>
+  </profiles>
+</project>




More information about the jboss-cvs-commits mailing list