This is an automated email from the ASF dual-hosted git repository.
mbuenger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-toolchains-plugin.git
The following commit(s) were added to refs/heads/master by this push:
new 1f2ca23 Update to 47 (#138)
1f2ca23 is described below
commit 1f2ca233a1048e32b9efad8c32f9e613ee013ba1
Author: Matthias Bünger <[email protected]>
AuthorDate: Wed Jan 28 15:17:05 2026 +0100
Update to 47 (#138)
---------
Co-authored-by: Slawomir Jaranowski <[email protected]>
---
pom.xml | 4 ++--
src/it/settings.xml | 4 ++++
src/it/setup-custom-toolchain/pom.xml | 40 ++++++++++++++++-------------------
3 files changed, 24 insertions(+), 24 deletions(-)
diff --git a/pom.xml b/pom.xml
index 1cabb71..91352cd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugins</artifactId>
- <version>45</version>
+ <version>47</version>
<relativePath />
</parent>
@@ -68,7 +68,7 @@ under the License.
<properties>
<javaVersion>8</javaVersion>
- <mavenVersion>3.9.11</mavenVersion>
+ <mavenVersion>3.9.12</mavenVersion>
<project.build.outputTimestamp>2024-04-18T00:34:08Z</project.build.outputTimestamp>
</properties>
diff --git a/src/it/settings.xml b/src/it/settings.xml
index c8f77f0..8edd78c 100644
--- a/src/it/settings.xml
+++ b/src/it/settings.xml
@@ -32,9 +32,11 @@ under the License.
<url>@localRepositoryUrl@</url>
<releases>
<enabled>true</enabled>
+ <checksumPolicy>warn</checksumPolicy>
</releases>
<snapshots>
<enabled>true</enabled>
+ <checksumPolicy>warn</checksumPolicy>
</snapshots>
</repository>
</repositories>
@@ -44,9 +46,11 @@ under the License.
<url>@localRepositoryUrl@</url>
<releases>
<enabled>true</enabled>
+ <checksumPolicy>warn</checksumPolicy>
</releases>
<snapshots>
<enabled>true</enabled>
+ <checksumPolicy>warn</checksumPolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
diff --git a/src/it/setup-custom-toolchain/pom.xml
b/src/it/setup-custom-toolchain/pom.xml
index 476de67..9e37cb2 100644
--- a/src/it/setup-custom-toolchain/pom.xml
+++ b/src/it/setup-custom-toolchain/pom.xml
@@ -38,26 +38,28 @@ under the License.
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
- <version>3.0.5</version>
+ <version>@mavenVersion@</version>
+ <scope>provided</scope>
</dependency>
<!-- plugin API and plugin-tools -->
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
- <version>3.0.5</version>
+ <version>@mavenVersion@</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
- <version>3.3</version>
+ <version>@version.maven-plugin-tools@</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
- <version>3.0.24</version>
+ <version>3.6.0</version>
</dependency>
</dependencies>
@@ -65,38 +67,32 @@ under the License.
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
- <version>3.1</version>
+ <version>@version.maven-compiler-plugin@</version>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
- <version>2.5.2</version>
+ <version>@version.maven-install-plugin@</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
- <version>3.3</version>
+ <version>@version.maven-plugin-tools@</version>
+ <configuration>
+ <goalPrefix>custom-toolchain</goalPrefix>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.sisu</groupId>
+ <artifactId>sisu-maven-plugin</artifactId>
+ <version>@version.sisu-maven-plugin@</version>
<executions>
<execution>
- <id>default-descriptor</id>
- <phase>process-classes</phase>
- </execution>
- <execution>
- <id>generated-helpmojo</id>
<goals>
- <goal>helpmojo</goal>
+ <goal>main-index</goal>
</goals>
- <configuration>
- <!-- TODO: remove when upgrading plugin-tools to 3.4: see
MPLUGIN-238 -->
- <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
- </configuration>
</execution>
</executions>
</plugin>
- <plugin>
- <groupId>org.eclipse.sisu</groupId>
- <artifactId>sisu-maven-plugin</artifactId>
- <version>0.9.0.M3</version>
- </plugin>
</plugins>
</build>