This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-rar-plugin.git
The following commit(s) were added to refs/heads/master by this push:
new 25b6bef Bump plexus-archiver to 4.10.4
25b6bef is described below
commit 25b6befcfc541d3a32b27aea1bfb3766620f8108
Author: Sylwester Lachiewicz <[email protected]>
AuthorDate: Sun Nov 9 14:01:58 2025 +0100
Bump plexus-archiver to 4.10.4
---
.github/workflows/maven-verify.yml | 2 ++
pom.xml | 28 +++++++++++-----------------
2 files changed, 13 insertions(+), 17 deletions(-)
diff --git a/.github/workflows/maven-verify.yml
b/.github/workflows/maven-verify.yml
index 932827c..ce4b500 100644
--- a/.github/workflows/maven-verify.yml
+++ b/.github/workflows/maven-verify.yml
@@ -25,3 +25,5 @@ jobs:
build:
name: Verify
uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v4
+ with:
+ maven4-enabled: true
diff --git a/pom.xml b/pom.xml
index 0e4b443..944d78f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -126,16 +126,26 @@ under the License.
<artifactId>maven-filtering</artifactId>
<version>3.4.0</version>
</dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-lang3</artifactId>
+ <version>3.19.0</version>
+ </dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-archiver</artifactId>
- <version>4.10.3</version>
+ <version>4.10.4</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-archiver</artifactId>
<version>3.6.5</version>
</dependency>
+ <dependency>
+ <groupId>org.codehaus.plexus</groupId>
+ <artifactId>plexus-interpolation</artifactId>
+ <version>1.29</version>
+ </dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
@@ -184,22 +194,6 @@ under the License.
<groupId>org.eclipse.sisu</groupId>
<artifactId>sisu-maven-plugin</artifactId>
</plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>analyze</id>
- <goals>
- <goal>analyze-only</goal>
- </goals>
- <configuration>
- <failOnWarning>true</failOnWarning>
-
<ignoredDependencies>junit:junit:*,org.apache.maven:maven-compat:*</ignoredDependencies>
- </configuration>
- </execution>
- </executions>
- </plugin>
</plugins>
</build>