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 mb...@apache.org on 2020/10/18 15:30:12 UTC

[db-jdo] branch master updated: JDO-786: added pluginManagement

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

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


The following commit(s) were added to refs/heads/master by this push:
     new bbb6487  JDO-786: added pluginManagement
bbb6487 is described below

commit bbb64873e17d494fcfc875dd8d1deb0461af369f
Author: Michael Bouschen <mb...@apache.org>
AuthorDate: Sun Oct 18 17:30:03 2020 +0200

    JDO-786: added pluginManagement
---
 api/pom.xml        |  1 -
 exectck/pom.xml    |  2 --
 parent-pom/pom.xml | 63 +++++++++++++++++++++++++++++++++++++++++++++++-------
 pom.xml            |  2 --
 tck/pom.xml        |  3 ---
 5 files changed, 55 insertions(+), 16 deletions(-)

diff --git a/api/pom.xml b/api/pom.xml
index 2605262..faffa6e 100644
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -61,7 +61,6 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>2.3.7</version>
         <executions>
           <execution>
             <id>bundle-manifest</id>
diff --git a/exectck/pom.xml b/exectck/pom.xml
index 67fe583..5cea6de 100644
--- a/exectck/pom.xml
+++ b/exectck/pom.xml
@@ -43,7 +43,6 @@
 	        <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-deploy-plugin</artifactId>
-                <version>2.6</version>
                 <configuration>
                     <skip>true</skip>
                 </configuration>
@@ -75,7 +74,6 @@
         <dependency>
             <groupId>org.apache.maven.plugin-tools</groupId>
             <artifactId>maven-plugin-annotations</artifactId>
-            <version>3.4</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
diff --git a/parent-pom/pom.xml b/parent-pom/pom.xml
index c225e76..5817245 100644
--- a/parent-pom/pom.xml
+++ b/parent-pom/pom.xml
@@ -71,9 +71,9 @@ Requests (JSR 12 and 243) under the auspices of the Java Community Process.</des
         <version>3.6.3</version>
       </dependency>
       <dependency>
-	    <groupId>javax.transaction</groupId>
-    	<artifactId>javax.transaction-api</artifactId>
-    	<version>1.3</version>
+        <groupId>javax.transaction</groupId>
+        <artifactId>javax.transaction-api</artifactId>
+        <version>1.3</version>
      </dependency>
       <dependency>
         <groupId>org.apache.ant</groupId>
@@ -120,7 +120,12 @@ Requests (JSR 12 and 243) under the auspices of the Java Community Process.</des
         <groupId>commons-logging</groupId>
         <artifactId>commons-logging</artifactId>
         <version>1.2</version>
-      </dependency>
+     </dependency>
+     <dependency>
+       <groupId>org.apache.maven.plugin-tools</groupId>
+       <artifactId>maven-plugin-annotations</artifactId>
+       <version>3.6.0</version>  
+     </dependency>
     </dependencies>
   </dependencyManagement>
 
@@ -237,10 +242,55 @@ Requests (JSR 12 and 243) under the auspices of the Java Community Process.</des
   </developers>
 
   <build>
+    
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <version>3.8.1</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-dependency-plugin</artifactId>
+          <version>3.1.2</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-deploy-plugin</artifactId>
+          <version>3.0.0-M1</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-clean-plugin</artifactId>
+          <version>3.1.0</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-assembly-plugin</artifactId>
+          <version>3.3.0</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-changes-plugin</artifactId>
+          <version>2.12.1</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-checkstyle-plugin</artifactId>
+          <version>3.1.1.</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.felix</groupId>
+          <artifactId>maven-bundle-plugin</artifactId>
+          <version>5.1.1</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-gpg-plugin</artifactId>
+          <version>1.6</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+    
     <plugins>
       <plugin>
         <artifactId>maven-compiler-plugin</artifactId>
-        <version>2.3.2</version>
         <configuration>
           <source>1.8</source>
           <target>1.8</target>
@@ -260,7 +310,6 @@ Requests (JSR 12 and 243) under the auspices of the Java Community Process.</des
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-changes-plugin</artifactId>
-        <version>2.6</version>
         <configuration>
           <xmlPath>${basedir}/xdocs/changes.xml</xmlPath>
         </configuration>
@@ -268,7 +317,6 @@ Requests (JSR 12 and 243) under the auspices of the Java Community Process.</des
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-checkstyle-plugin</artifactId>
-        <version>2.6</version>
         <configuration>
           <configLocation>${basedir}/../jdo_checks.xml</configLocation>
           <headerLocation>${basedir}/../LICENSE.txt</headerLocation>
@@ -277,7 +325,6 @@ Requests (JSR 12 and 243) under the auspices of the Java Community Process.</des
      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-deploy-plugin</artifactId>
-        <version>2.6</version>
         <configuration>
           <skip>false</skip>
         </configuration>
diff --git a/pom.xml b/pom.xml
index dd573cb..5e4469e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -87,7 +87,6 @@
         <plugins>
           <plugin>
             <artifactId>maven-assembly-plugin</artifactId>
-            <version>2.4</version>
             <configuration>
               <appendAssemblyId>true</appendAssemblyId>
               <descriptors>
@@ -106,7 +105,6 @@
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-gpg-plugin</artifactId>
-            <version>1.1</version>
             <executions>
               <execution>
                 <configuration>
diff --git a/tck/pom.xml b/tck/pom.xml
index 9b15cad..6ec7fff 100644
--- a/tck/pom.xml
+++ b/tck/pom.xml
@@ -64,7 +64,6 @@
             <plugin>
                 <!-- store dependencies into property dependency.classpath -->
                 <artifactId>maven-dependency-plugin</artifactId>
-                <version>2.8</version>
                 <executions>
                     <execution>
                         <phase>generate-sources</phase>
@@ -110,7 +109,6 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-deploy-plugin</artifactId>
-                <version>2.6</version>
                 <configuration>
                     <skip>true</skip>
                 </configuration>
@@ -250,7 +248,6 @@
             </plugin>
             <plugin>
                 <artifactId>maven-clean-plugin</artifactId>
-                <version>2.5</version>
                 <configuration>
                     <filesets>
                         <fileset>