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 3b4bb6e4b3ac18eee7770d27f3d566dcbe666ba9 Author: Elliotte Rusty Harold <[email protected]> AuthorDate: Thu Aug 24 13:52:10 2023 -0400 spotless --- maven-enforcer-plugin/pom.xml | 12 +++++++++++- pom.xml | 14 +++++++++++++- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/maven-enforcer-plugin/pom.xml b/maven-enforcer-plugin/pom.xml index e2737b9..6233b65 100644 --- a/maven-enforcer-plugin/pom.xml +++ b/maven-enforcer-plugin/pom.xml @@ -58,6 +58,16 @@ <version>1.7.36</version> <scope>provided</scope> </dependency> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-classworlds</artifactId> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>javax.inject</groupId> + <artifactId>javax.inject</artifactId> + <scope>provided</scope> + </dependency> <dependency> <groupId>org.apache.maven.enforcer</groupId> @@ -75,7 +85,7 @@ </dependency> <dependency> <groupId>org.junit.jupiter</groupId> - <artifactId>junit-jupiter-engine</artifactId> + <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> diff --git a/pom.xml b/pom.xml index b824c7a..147ff2b 100644 --- a/pom.xml +++ b/pom.xml @@ -154,7 +154,19 @@ <version>0.9.0.M2</version> <scope>provided</scope> </dependency> - + <dependency> + <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> + <version>1</version> + <scope>provided</scope> + </dependency> + <!-- other dependencies --> <dependency> <groupId>commons-codec</groupId>
