[hibernate-commits] Hibernate SVN: r16196 - in jpa-api/tags: v2_0_Beta1 and 1 other directory.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Fri Mar 20 07:45:57 EDT 2009


Author: hardy.ferentschik
Date: 2009-03-20 07:45:56 -0400 (Fri, 20 Mar 2009)
New Revision: 16196

Added:
   jpa-api/tags/v2_0_Beta1/
   jpa-api/tags/v2_0_Beta1/pom.xml
Removed:
   jpa-api/tags/v2_0_Beta1/pom.xml
Log:
[maven-release-plugin]  copy for tag v2_0_Beta1

Copied: jpa-api/tags/v2_0_Beta1 (from rev 16193, jpa-api/trunk)

Deleted: jpa-api/tags/v2_0_Beta1/pom.xml
===================================================================
--- jpa-api/trunk/pom.xml	2009-03-20 11:39:26 UTC (rev 16193)
+++ jpa-api/tags/v2_0_Beta1/pom.xml	2009-03-20 11:45:56 UTC (rev 16196)
@@ -1,130 +0,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">
-    <modelVersion>4.0.0</modelVersion>
-
-    <groupId>org.hibernate.java-persistence</groupId>
-    <artifactId>jpa-api</artifactId>
-    <version>2.0.Beta1</version>
-    <packaging>jar</packaging>
-    <name>JPA API</name>
-
-    <description>JSR 317: Java Persistence API 2.0</description>
-
-    <inceptionYear>2007</inceptionYear>
-
-    <licenses>
-        <license>
-            <url>license.txt</url>
-        </license>
-    </licenses>
-
-    <scm>
-        <connection>scm:svn:https://svn.jboss.org/repos/hibernate/jpa-api/tags/v2_0_Beta1</connection>
-        <url>http://fisheye.jboss.org/browse/Hibernate/jpa-api/tags/v2_0_Beta1</url>
-    </scm>
-
-    <developers>
-        <developer>
-            <id>epbernard</id>
-            <name>Emmanuel Bernard</name>
-            <email>emmanuel at hibernate.org</email>
-            <organization>JBoss, a division of Red Hat</organization>
-            <url>http://in.relation.to/Bloggers/Emmanuel</url>
-        </developer>
-        <developer>
-            <id>hardy.ferentschik</id>
-            <name>Hardy Ferentschik</name>
-            <email>hferents at redhat.com</email>
-            <organization>JBoss, a division of Red Hat</organization>
-            <url>http://in.relation.to/Bloggers/Hardy</url>
-        </developer>
-    </developers>
-
-    <build>
-        <extensions>
-            <extension>
-                <groupId>org.apache.maven.wagon</groupId>
-                <artifactId>wagon-webdav</artifactId>
-                <version>1.0-beta-2</version>
-            </extension>
-        </extensions>
-        <pluginManagement>
-            <plugins>
-                <plugin>
-                    <groupId>org.apache.maven.plugins</groupId>
-                    <artifactId>maven-compiler-plugin</artifactId>
-                    <version>2.0.2</version>
-                    <configuration>
-                        <source>1.5</source>
-                        <target>1.5</target>
-                    </configuration>
-                </plugin>
-                <plugin>
-                    <artifactId>maven-source-plugin</artifactId>
-                    <executions>
-                        <execution>
-                            <id>attach-sources</id>
-                            <goals>
-                                <goal>jar</goal>
-                            </goals>
-                        </execution>
-                    </executions>
-                </plugin>
-                <plugin>
-                    <groupId>org.apache.maven.plugins</groupId>
-                    <artifactId>maven-jar-plugin</artifactId>
-                    <version>2.2</version>
-                    <configuration>
-                        <archive>
-                            <manifestEntries>
-                                <Built-By>hibernate.org</Built-By>
-                                <Specification-Title>Java Persistence API, Version 2.0</Specification-Title>
-                                <Specification-Version>${pom.version}</Specification-Version>
-                                <Specification-Vendor>Sun Microsystems, Inc.</Specification-Vendor>
-                                <Implementation-Version>${pom.version}</Implementation-Version>
-                                <Implementation-Vendor>hibernate.org</Implementation-Vendor>
-                                <Implementation-Title>JAP API</Implementation-Title>
-                            </manifestEntries>
-                        </archive>
-                    </configuration>
-                </plugin>
-                <plugin>
-                    <groupId>org.apache.maven.plugins</groupId>
-                    <artifactId>maven-javadoc-plugin</artifactId>
-                    <version>2.5</version>
-                    <configuration>
-                        <use>true</use>
-                        <version>true</version>
-                        <overview>${basedir}/src/main/javadoc/package.html</overview>
-                        <windowtitle>EJB 3.0 Persistence API Documentation</windowtitle>
-                        <doctitle>EJB 3.0 Persistence API Documentation</doctitle>
-                        <links>
-                            <link>http://java.sun.com/j2se/1.5/docs/api</link>
-                        </links>
-                        <stylesheetfile>${basedir}/src/main/javadoc/jdstyle.css</stylesheetfile>
-                    </configuration>                  
-                </plugin>
-                <plugin>
-                    <artifactId>maven-release-plugin</artifactId>
-                    <configuration>
-                        <goals>package</goals>
-                    </configuration>
-                </plugin>
-            </plugins>
-        </pluginManagement>
-    </build>
-    
-    <distributionManagement>
-        <repository>
-            <!-- Copy the dist to the local checkout of the JBoss maven2 repo ${maven.repository.root} -->
-            <!-- It is anticipated that ${maven.repository.root} be set in user's settings.xml -->
-            <!-- todo : replace this with direct svn access once the svnkit providers are available -->
-            <id>repository.jboss.org</id>
-            <url>file://${maven.repository.root}</url>
-        </repository>
-        <snapshotRepository>
-            <id>snapshots.jboss.org</id>
-            <name>JBoss Snapshot Repository</name>
-            <url>dav:https://snapshots.jboss.org/maven2</url>
-        </snapshotRepository>
-    </distributionManagement>
-</project>
\ No newline at end of file

Copied: jpa-api/tags/v2_0_Beta1/pom.xml (from rev 16195, jpa-api/trunk/pom.xml)
===================================================================
--- jpa-api/tags/v2_0_Beta1/pom.xml	                        (rev 0)
+++ jpa-api/tags/v2_0_Beta1/pom.xml	2009-03-20 11:45:56 UTC (rev 16196)
@@ -0,0 +1,130 @@
+<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">
+    <modelVersion>4.0.0</modelVersion>
+
+    <groupId>org.hibernate.java-persistence</groupId>
+    <artifactId>jpa-api</artifactId>
+    <version>2.0.Beta1</version>
+    <packaging>jar</packaging>
+    <name>JPA API</name>
+
+    <description>JSR 317: Java Persistence API 2.0</description>
+
+    <inceptionYear>2007</inceptionYear>
+
+    <licenses>
+        <license>
+            <url>license.txt</url>
+        </license>
+    </licenses>
+
+    <scm>
+        <connection>scm:svn:https://svn.jboss.org/repos/hibernate/jpa-api/tags/v2_0_Beta1</connection>
+        <url>http://fisheye.jboss.org/browse/Hibernate/jpa-api/tags/v2_0_Beta1</url>
+    </scm>
+
+    <developers>
+        <developer>
+            <id>epbernard</id>
+            <name>Emmanuel Bernard</name>
+            <email>emmanuel at hibernate.org</email>
+            <organization>JBoss, a division of Red Hat</organization>
+            <url>http://in.relation.to/Bloggers/Emmanuel</url>
+        </developer>
+        <developer>
+            <id>hardy.ferentschik</id>
+            <name>Hardy Ferentschik</name>
+            <email>hferents at redhat.com</email>
+            <organization>JBoss, a division of Red Hat</organization>
+            <url>http://in.relation.to/Bloggers/Hardy</url>
+        </developer>
+    </developers>
+
+    <build>
+        <extensions>
+            <extension>
+                <groupId>org.apache.maven.wagon</groupId>
+                <artifactId>wagon-webdav</artifactId>
+                <version>1.0-beta-2</version>
+            </extension>
+        </extensions>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-compiler-plugin</artifactId>
+                    <version>2.0.2</version>
+                    <configuration>
+                        <source>1.5</source>
+                        <target>1.5</target>
+                    </configuration>
+                </plugin>
+                <plugin>
+                    <artifactId>maven-source-plugin</artifactId>
+                    <executions>
+                        <execution>
+                            <id>attach-sources</id>
+                            <goals>
+                                <goal>jar</goal>
+                            </goals>
+                        </execution>
+                    </executions>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-jar-plugin</artifactId>
+                    <version>2.2</version>
+                    <configuration>
+                        <archive>
+                            <manifestEntries>
+                                <Built-By>hibernate.org</Built-By>
+                                <Specification-Title>Java Persistence API, Version 2.0</Specification-Title>
+                                <Specification-Version>${pom.version}</Specification-Version>
+                                <Specification-Vendor>Sun Microsystems, Inc.</Specification-Vendor>
+                                <Implementation-Version>${pom.version}</Implementation-Version>
+                                <Implementation-Vendor>hibernate.org</Implementation-Vendor>
+                                <Implementation-Title>JAP API</Implementation-Title>
+                            </manifestEntries>
+                        </archive>
+                    </configuration>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-javadoc-plugin</artifactId>
+                    <version>2.5</version>
+                    <configuration>
+                        <use>true</use>
+                        <version>true</version>
+                        <overview>${basedir}/src/main/javadoc/package.html</overview>
+                        <windowtitle>EJB 3.0 Persistence API Documentation</windowtitle>
+                        <doctitle>EJB 3.0 Persistence API Documentation</doctitle>
+                        <links>
+                            <link>http://java.sun.com/j2se/1.5/docs/api</link>
+                        </links>
+                        <stylesheetfile>${basedir}/src/main/javadoc/jdstyle.css</stylesheetfile>
+                    </configuration>                  
+                </plugin>
+                <plugin>
+                    <artifactId>maven-release-plugin</artifactId>
+                    <configuration>
+                        <goals>package</goals>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
+    
+    <distributionManagement>
+        <repository>
+            <!-- Copy the dist to the local checkout of the JBoss maven2 repo ${maven.repository.root} -->
+            <!-- It is anticipated that ${maven.repository.root} be set in user's settings.xml -->
+            <!-- todo : replace this with direct svn access once the svnkit providers are available -->
+            <id>repository.jboss.org</id>
+            <url>file://${maven.repository.root}</url>
+        </repository>
+        <snapshotRepository>
+            <id>snapshots.jboss.org</id>
+            <name>JBoss Snapshot Repository</name>
+            <url>dav:https://snapshots.jboss.org/maven2</url>
+        </snapshotRepository>
+    </distributionManagement>
+</project>




More information about the hibernate-commits mailing list