You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jdo-commits@db.apache.org by ti...@apache.org on 2021/11/08 21:45:20 UTC

[db-jdo] branch 3.2 updated: [maven-release-plugin] prepare release v3.2-rc2

This is an automated email from the ASF dual-hosted git repository.

tilmannz pushed a commit to branch 3.2
in repository https://gitbox.apache.org/repos/asf/db-jdo.git


The following commit(s) were added to refs/heads/3.2 by this push:
     new a6370f0  [maven-release-plugin] prepare release v3.2-rc2
a6370f0 is described below

commit a6370f0e42be2f75608a70d784ee13203d6fc62d
Author: Tilmann <zo...@gmx.de>
AuthorDate: Mon Nov 8 22:45:17 2021 +0100

    [maven-release-plugin] prepare release v3.2-rc2
---
 api/pom.xml        |  8 ++++++--
 exectck/pom.xml    |  8 ++++++--
 parent-pom/pom.xml | 11 ++++++-----
 pom.xml            |  8 ++++++--
 tck/pom.xml        | 10 +++++++---
 5 files changed, 31 insertions(+), 14 deletions(-)

diff --git a/api/pom.xml b/api/pom.xml
index 709ad8f..6768f65 100644
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -21,13 +21,13 @@
     <parent>
         <groupId>org.apache.jdo</groupId>
         <artifactId>parent-pom</artifactId>
-        <version>3.2-RC2-SNAPSHOT</version>
+        <version>3.2-RC2</version>
         <relativePath>../parent-pom</relativePath>
     </parent>
 
     <groupId>javax.jdo</groupId>
     <artifactId>jdo-api</artifactId>
-    <version>3.2-RC2-SNAPSHOT</version>
+    <version>3.2-RC2</version>
     <name>JDO API</name>
 
     <dependencies>
@@ -141,4 +141,8 @@
             </plugin>
         </plugins>
     </reporting>
+
+  <scm>
+    <tag>v3.2-rc2</tag>
+  </scm>
 </project>
diff --git a/exectck/pom.xml b/exectck/pom.xml
index 0b7a851..f0a1701 100644
--- a/exectck/pom.xml
+++ b/exectck/pom.xml
@@ -21,13 +21,13 @@
     <parent>
         <groupId>org.apache.jdo</groupId>
         <artifactId>parent-pom</artifactId>
-        <version>3.2-RC2-SNAPSHOT</version>
+        <version>3.2-RC2</version>
         <relativePath>../parent-pom</relativePath>
     </parent>
 
     <groupId>org.apache.jdo</groupId>
     <artifactId>jdo-exectck</artifactId>
-    <version>3.2-RC2-SNAPSHOT</version>
+    <version>3.2-RC2</version>
     <packaging>maven-plugin</packaging>
     <name>JDO TCK Execution Maven Mojo</name>
 
@@ -99,4 +99,8 @@
             </activation>
         </profile>
     </profiles>
+
+  <scm>
+    <tag>v3.2-rc2</tag>
+  </scm>
 </project>
diff --git a/parent-pom/pom.xml b/parent-pom/pom.xml
index 3bd9c02..5db1bdf 100644
--- a/parent-pom/pom.xml
+++ b/parent-pom/pom.xml
@@ -27,7 +27,7 @@
 
     <groupId>org.apache.jdo</groupId>
     <artifactId>parent-pom</artifactId>
-    <version>3.2-RC2-SNAPSHOT</version>
+    <version>3.2-RC2</version>
     <packaging>pom</packaging>
 
     <name>JDO PARENT</name>
@@ -157,7 +157,8 @@ Requests (JSR 12 and 243) under the auspices of the Java Community Process.</des
         <connection>scm:git:https://gitbox.apache.org/repos/asf/db-jdo.git</connection>
         <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/db-jdo.git</developerConnection>
         <url>https://gitbox.apache.org/repos/asf?p=db-jdo.git</url>
-    </scm>
+      <tag>v3.2-rc2</tag>
+  </scm>
 
     <properties>
         <project.build.outputTimestamp>1</project.build.outputTimestamp>
@@ -168,17 +169,17 @@ Requests (JSR 12 and 243) under the auspices of the Java Community Process.</des
             <dependency>
                 <groupId>javax.jdo</groupId>
                 <artifactId>jdo-api</artifactId>
-                <version>3.2-RC2-SNAPSHOT</version>
+                <version>3.2-RC2</version>
             </dependency>
             <dependency>
                 <groupId>org.apache.jdo</groupId>
                 <artifactId>jdo-exectck</artifactId>
-                <version>3.2-RC2-SNAPSHOT</version>
+                <version>3.2-RC2</version>
             </dependency>
             <dependency>
                 <groupId>org.apache.jdo</groupId>
                 <artifactId>jdo-tck</artifactId>
-                <version>3.2-RC2-SNAPSHOT</version>
+                <version>3.2-RC2</version>
             </dependency>
             <dependency>
                 <groupId>org.apache.maven</groupId>
diff --git a/pom.xml b/pom.xml
index 51ba9cc..aca5380 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,13 +22,13 @@
     <parent>
         <groupId>org.apache.jdo</groupId>
         <artifactId>parent-pom</artifactId>
-        <version>3.2-RC2-SNAPSHOT</version>
+        <version>3.2-RC2</version>
         <relativePath>parent-pom</relativePath>
     </parent>
 
     <groupId>org.apache</groupId>
     <artifactId>jdo</artifactId>
-    <version>3.2-RC2-SNAPSHOT</version>
+    <version>3.2-RC2</version>
     <packaging>pom</packaging>
 
     <name>JDO Root POM</name>
@@ -122,4 +122,8 @@
             </build>
         </profile>
     </profiles>
+
+  <scm>
+    <tag>v3.2-rc2</tag>
+  </scm>
 </project>
diff --git a/tck/pom.xml b/tck/pom.xml
index e1bd0d2..aa67b1a 100644
--- a/tck/pom.xml
+++ b/tck/pom.xml
@@ -21,13 +21,13 @@
     <parent>
         <groupId>org.apache.jdo</groupId>
         <artifactId>parent-pom</artifactId>
-        <version>3.2-RC2-SNAPSHOT</version>
+        <version>3.2-RC2</version>
         <relativePath>../parent-pom</relativePath>
     </parent>
 
     <groupId>org.apache.jdo</groupId>
     <artifactId>jdo-tck</artifactId>
-    <version>3.2-RC2-SNAPSHOT</version>
+    <version>3.2-RC2</version>
     <name>JDO Technology Compatibility Kit (TCK)</name>
     <description>The Java Data Objects (JDO) API is a standard interface-based Java model abstraction of persistence, developed as Java Specification Request JSR 243 under the auspices of the Java Community Process.
 
@@ -98,7 +98,7 @@
             <plugin>
                 <groupId>org.apache.jdo</groupId>
                 <artifactId>jdo-exectck</artifactId>
-                <version>3.2-RC2-SNAPSHOT</version>
+                <version>3.2-RC2</version>
                 <executions>
                     <execution>
                         <goals>
@@ -245,4 +245,8 @@
             </dependencies>
         </profile>
     </profiles>
+
+  <scm>
+    <tag>v3.2-rc2</tag>
+  </scm>
 </project>