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-enforcer.git
commit 4b31f501e2240cb415ef84faa895458641ea291e Author: Elliotte Rusty Harold <[email protected]> AuthorDate: Thu Aug 24 18:29:14 2023 -0400 [MENFORCER-490] Declare maven-enforcer-plugin dependencies --- maven-enforcer-plugin/pom.xml | 15 +++++++++++++++ pom.xml | 18 +++++++++--------- 2 files changed, 24 insertions(+), 9 deletions(-) diff --git a/maven-enforcer-plugin/pom.xml b/maven-enforcer-plugin/pom.xml index 6233b65..b41bc04 100644 --- a/maven-enforcer-plugin/pom.xml +++ b/maven-enforcer-plugin/pom.xml @@ -63,6 +63,16 @@ <artifactId>plexus-classworlds</artifactId> <scope>provided</scope> </dependency> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-utils</artifactId> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.eclipse.sisu</groupId> + <artifactId>org.eclipse.sisu.plexus</artifactId> + <scope>provided</scope> + </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> @@ -83,6 +93,11 @@ <artifactId>mockito-junit-jupiter</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <scope>test</scope> + </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> diff --git a/pom.xml b/pom.xml index 147ff2b..9ebefca 100644 --- a/pom.xml +++ b/pom.xml @@ -155,18 +155,18 @@ <scope>provided</scope> </dependency> <dependency> - <groupId>org.codehaus.plexus</groupId> - <artifactId>plexus-classworlds</artifactId> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-classworlds</artifactId> <version>2.5.2</version> - <scope>provided</scope> - </dependency> - <dependency> - <groupId>javax.inject</groupId> - <artifactId>javax.inject</artifactId> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>javax.inject</groupId> + <artifactId>javax.inject</artifactId> <version>1</version> - <scope>provided</scope> + <scope>provided</scope> </dependency> - + <!-- other dependencies --> <dependency> <groupId>commons-codec</groupId>
