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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu May 20 13:14:54 EDT 2010


Author: jaikiran
Date: 2010-05-20 13:14:54 -0400 (Thu, 20 May 2010)
New Revision: 105063

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

Copied: projects/jpa/tags/jboss-jpa-build-1.0.2 (from rev 105059, projects/jpa/trunk/build)

Modified: projects/jpa/tags/jboss-jpa-build-1.0.2/.project
===================================================================
--- projects/jpa/trunk/build/.project	2010-05-20 15:34:41 UTC (rev 105059)
+++ projects/jpa/tags/jboss-jpa-build-1.0.2/.project	2010-05-20 17:14:54 UTC (rev 105063)
@@ -5,7 +5,13 @@
 	<projects>
 	</projects>
 	<buildSpec>
+		<buildCommand>
+			<name>org.maven.ide.eclipse.maven2Builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
 	</buildSpec>
 	<natures>
+		<nature>org.maven.ide.eclipse.maven2Nature</nature>
 	</natures>
 </projectDescription>

Deleted: projects/jpa/tags/jboss-jpa-build-1.0.2/pom.xml
===================================================================
--- projects/jpa/trunk/build/pom.xml	2010-05-20 15:34:41 UTC (rev 105059)
+++ projects/jpa/tags/jboss-jpa-build-1.0.2/pom.xml	2010-05-20 17:14:54 UTC (rev 105063)
@@ -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.2-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.2/pom.xml (from rev 105062, projects/jpa/trunk/build/pom.xml)
===================================================================
--- projects/jpa/tags/jboss-jpa-build-1.0.2/pom.xml	                        (rev 0)
+++ projects/jpa/tags/jboss-jpa-build-1.0.2/pom.xml	2010-05-20 17:14:54 UTC (rev 105063)
@@ -0,0 +1,150 @@
+<!--
+  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.2</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.2</connection>
+    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/jpa/tags/jboss-jpa-build-1.0.2</developerConnection>
+    <url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbossas/projects/jpa/tags/jboss-jpa-build-1.0.2</url>
+  </scm>
+
+  <distributionManagement>
+      <repository>
+        <id>jboss-releases-repository</id>
+        <name>JBoss Releases Repository</name>
+        <url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url>
+      </repository>
+  </distributionManagement>  
+
+  <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