You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jb...@apache.org on 2019/07/26 09:31:54 UTC

[activemq] branch activemq-5.15.x updated: AMQ-7247 - Update maven plugin API + Pax URL versions

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

jbonofre pushed a commit to branch activemq-5.15.x
in repository https://gitbox.apache.org/repos/asf/activemq.git


The following commit(s) were added to refs/heads/activemq-5.15.x by this push:
     new bdf2afc  AMQ-7247 - Update maven plugin API + Pax URL versions
bdf2afc is described below

commit bdf2afca5bbdd1594b4927d24311956fad5d254b
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Fri Jul 19 17:01:43 2019 +0100

    AMQ-7247 - Update maven plugin API + Pax URL versions
---
 activemq-tooling/activemq-maven-plugin/pom.xml         | 14 +++++++-------
 activemq-tooling/activemq-memtest-maven-plugin/pom.xml |  2 +-
 activemq-tooling/activemq-perf-maven-plugin/pom.xml    |  2 +-
 pom.xml                                                |  3 ++-
 4 files changed, 11 insertions(+), 10 deletions(-)

diff --git a/activemq-tooling/activemq-maven-plugin/pom.xml b/activemq-tooling/activemq-maven-plugin/pom.xml
index 91f2dc6..5e60174 100644
--- a/activemq-tooling/activemq-maven-plugin/pom.xml
+++ b/activemq-tooling/activemq-maven-plugin/pom.xml
@@ -31,13 +31,8 @@
   <dependencies>
     <dependency>
       <groupId>org.apache.maven</groupId>
-      <artifactId>maven-plugin-api</artifactId>
-      <version>2.0</version>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.maven</groupId>
-      <artifactId>maven-project</artifactId>
-      <version>2.0</version>
+      <artifactId>maven-core</artifactId>
+      <version>${maven-core-version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.activemq</groupId>
@@ -72,6 +67,11 @@
       <artifactId>mockito-core</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
   <build>
diff --git a/activemq-tooling/activemq-memtest-maven-plugin/pom.xml b/activemq-tooling/activemq-memtest-maven-plugin/pom.xml
index 2a5ccb8..35c1d15 100644
--- a/activemq-tooling/activemq-memtest-maven-plugin/pom.xml
+++ b/activemq-tooling/activemq-memtest-maven-plugin/pom.xml
@@ -33,7 +33,7 @@
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-api</artifactId>
-      <version>2.0</version>
+      <version>${maven-core-version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.activemq</groupId>
diff --git a/activemq-tooling/activemq-perf-maven-plugin/pom.xml b/activemq-tooling/activemq-perf-maven-plugin/pom.xml
index 847d02d..aed674c 100644
--- a/activemq-tooling/activemq-perf-maven-plugin/pom.xml
+++ b/activemq-tooling/activemq-perf-maven-plugin/pom.xml
@@ -32,7 +32,7 @@
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-api</artifactId>
-      <version>2.0</version>
+      <version>${maven-core-version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.activemq</groupId>
diff --git a/pom.xml b/pom.xml
index 28dee3e..128d81b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -138,7 +138,7 @@
     <pax-exam-version>4.9.1</pax-exam-version>
     <paxexam-karaf-container-version>1.0.0</paxexam-karaf-container-version>
     <pax-runner-version>1.8.6</pax-runner-version>
-    <pax-url-version>2.4.3</pax-url-version>
+    <pax-url-version>2.6.1</pax-url-version>
     <felix-configadmin-version>1.8.0</felix-configadmin-version>
     <felix-framework-version>5.0.1</felix-framework-version>
 
@@ -176,6 +176,7 @@
     <maven-project-info-reports-plugin-version>2.7</maven-project-info-reports-plugin-version>
     <maven-graph-plugin-version>1.30</maven-graph-plugin-version>
     <maven-plugin-plugin-version>3.6.0</maven-plugin-plugin-version>
+    <maven-core-version>3.6.1</maven-core-version>
     <!-- OSGi bundles properties -->
     <activemq.osgi.import.pkg>*</activemq.osgi.import.pkg>
     <activemq.osgi.export.pkg>org.apache.activemq*</activemq.osgi.export.pkg>