You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2021/04/23 11:31:34 UTC

[maven-plugin-tools] branch dependencies updated: make sure maven-plugin-tools-x are installed for ITs

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

rfscholte pushed a commit to branch dependencies
in repository https://gitbox.apache.org/repos/asf/maven-plugin-tools.git


The following commit(s) were added to refs/heads/dependencies by this push:
     new 7eac1f6  make sure maven-plugin-tools-x are installed for ITs
7eac1f6 is described below

commit 7eac1f6d587b50f29397affc95e0e874ce244664
Author: rfscholte <rf...@apache.org>
AuthorDate: Fri Apr 23 13:31:12 2021 +0200

    make sure maven-plugin-tools-x are installed for ITs
---
 maven-plugin-plugin/pom.xml | 13 +++++++++++++
 pom.xml                     |  7 ++++++-
 2 files changed, 19 insertions(+), 1 deletion(-)

diff --git a/maven-plugin-plugin/pom.xml b/maven-plugin-plugin/pom.xml
index 58122c6..22cdc9d 100644
--- a/maven-plugin-plugin/pom.xml
+++ b/maven-plugin-plugin/pom.xml
@@ -83,6 +83,19 @@
         'maven-plugin-tools-annotations' which fails to load at runtime when not available.
       -->
     </dependency>
+    <!-- define optional runtime dependencies for integration tests -->
+    <dependency>
+      <groupId>org.apache.maven.plugin-tools</groupId>
+      <artifactId>maven-plugin-tools-ant</artifactId>
+      <scope>runtime</scope>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.plugin-tools</groupId>
+      <artifactId>maven-plugin-tools-beanshell</artifactId>
+      <scope>runtime</scope>
+      <optional>true</optional>
+    </dependency>
 
     <!-- doxia -->
     <dependency>
diff --git a/pom.xml b/pom.xml
index b3aef40..01cc365 100644
--- a/pom.xml
+++ b/pom.xml
@@ -95,7 +95,7 @@
     <pluginTestingHarnessVersion>1.3</pluginTestingHarnessVersion>
     <mavenVersion>3.0</mavenVersion>
     <antVersion>1.7.1</antVersion>
-    <mavenInvokerPluginVersion>3.2.1</mavenInvokerPluginVersion>
+    <mavenInvokerPluginVersion>3.2.2</mavenInvokerPluginVersion>
     <maven.site.path>plugin-tools-archives/plugin-tools-LATEST</maven.site.path>
     <asmVersion>9.1</asmVersion>
     <project.build.outputTimestamp>2020-04-07T21:04:00Z</project.build.outputTimestamp>
@@ -136,6 +136,11 @@
       </dependency>
       <dependency>
         <groupId>org.apache.maven.plugin-tools</groupId>
+        <artifactId>maven-plugin-tools-ant</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.maven.plugin-tools</groupId>
         <artifactId>maven-plugin-tools-beanshell</artifactId>
         <version>${project.version}</version>
       </dependency>