This is an automated email from the ASF dual-hosted git repository. elharo pushed a commit to branch deps in repository https://gitbox.apache.org/repos/asf/maven-assembly-plugin.git
commit 2089a16e8fba26d0a5897c07654f05a867e8dfa4 Author: Elliotte Rusty Harold <[email protected]> AuthorDate: Sun Nov 23 06:59:00 2025 -0600 Declare used dependencies --- 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>
