You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by cs...@apache.org on 2021/10/14 10:54:20 UTC

[maven-plugin-tools] branch fix-its created (now 1f75062)

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

cstamas pushed a change to branch fix-its
in repository https://gitbox.apache.org/repos/asf/maven-plugin-tools.git.


      at 1f75062  Update ITs

This branch includes the following new commits:

     new 1f75062  Update ITs

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[maven-plugin-tools] 01/01: Update ITs

Posted by cs...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 1f75062b8f9ae35634c305037ee541700c2c28d1
Author: Tamas Cservenak <ta...@cservenak.net>
AuthorDate: Thu Oct 14 12:52:46 2021 +0200

    Update ITs
    
    They used ancient maven API and expect things to be
    on classpath, that is not the case anymore.
    
    Changed fixed mvn version to param, and added maven-core
    as dependency as the class is in maven-core.
---
 .../src/it/annotation-with-inheritance-reactor/pom.xml             | 7 ++++++-
 maven-plugin-plugin/src/it/annotation-with-inheritance/pom.xml     | 7 ++++++-
 2 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/maven-plugin-plugin/src/it/annotation-with-inheritance-reactor/pom.xml b/maven-plugin-plugin/src/it/annotation-with-inheritance-reactor/pom.xml
index ad37af0..a4236d2 100644
--- a/maven-plugin-plugin/src/it/annotation-with-inheritance-reactor/pom.xml
+++ b/maven-plugin-plugin/src/it/annotation-with-inheritance-reactor/pom.xml
@@ -42,7 +42,12 @@ under the License.
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-api</artifactId>
-      <version>2.0</version>
+      <version>@mavenVersion@</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-core</artifactId>
+      <version>@mavenVersion@</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven.plugin-tools</groupId>
diff --git a/maven-plugin-plugin/src/it/annotation-with-inheritance/pom.xml b/maven-plugin-plugin/src/it/annotation-with-inheritance/pom.xml
index 4921b29..3cb72fe 100644
--- a/maven-plugin-plugin/src/it/annotation-with-inheritance/pom.xml
+++ b/maven-plugin-plugin/src/it/annotation-with-inheritance/pom.xml
@@ -43,7 +43,12 @@ under the License.
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-api</artifactId>
-      <version>2.0</version>
+      <version>@mavenVersion@</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-core</artifactId>
+      <version>@mavenVersion@</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>