This is an automated email from the ASF dual-hosted git repository.
elharo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-assembly-plugin.git
The following commit(s) were added to refs/heads/master by this push:
new 0a06350e Declare used dependencies (#1271)
0a06350e is described below
commit 0a06350eb17630b256c7825ed76e7520b359d4f0
Author: Elliotte Rusty Harold <[email protected]>
AuthorDate: Sun Nov 23 10:04:25 2025 -0600
Declare used dependencies (#1271)
---
pom.xml | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/pom.xml b/pom.xml
index 317dbf4e..4a7e7fce 100644
--- a/pom.xml
+++ b/pom.xml
@@ -117,12 +117,23 @@ under the License.
<version>${mavenVersion}</version>
<scope>provided</scope>
</dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-model-builder</artifactId>
+ <version>${mavenVersion}</version>
+ <scope>provided</scope>
+ </dependency>
<dependency>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver-util</artifactId>
<!-- the same version as in Maven 3.6.3 -->
<version>1.4.1</version>
</dependency>
+ <dependency>
+ <groupId>org.apache.maven.resolver</groupId>
+ <artifactId>maven-resolver-api</artifactId>
+ <version>1.9.24</version>
+ </dependency>
<dependency>
<groupId>org.slf4j</groupId>
@@ -177,6 +188,12 @@ under the License.
<artifactId>plexus-io</artifactId>
<version>3.6.0</version>
</dependency>
+ <dependency>
+ <groupId>org.codehaus.plexus</groupId>
+ <artifactId>plexus-classworlds</artifactId>
+ <version>2.9.0</version>
+ <scope>provided</scope>
+ </dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-archiver</artifactId>