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-release.git
commit dcd82bc8f901e20f97a502f8820284821cbe5ddb Author: Elliotte Rusty Harold <[email protected]> AuthorDate: Thu Mar 16 07:41:18 2023 -0400 improve dependency declarations --- maven-release-api/pom.xml | 5 ----- maven-release-manager/pom.xml | 16 ++++++++++++++-- maven-release-plugin/pom.xml | 5 +++-- 3 files changed, 17 insertions(+), 9 deletions(-) diff --git a/maven-release-api/pom.xml b/maven-release-api/pom.xml index cae47978..e73728fa 100644 --- a/maven-release-api/pom.xml +++ b/maven-release-api/pom.xml @@ -73,10 +73,5 @@ <artifactId>slf4j-api</artifactId> </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <scope>test</scope> - </dependency> </dependencies> </project> diff --git a/maven-release-manager/pom.xml b/maven-release-manager/pom.xml index c68edcd6..1d6bc11f 100644 --- a/maven-release-manager/pom.xml +++ b/maven-release-manager/pom.xml @@ -161,6 +161,19 @@ <artifactId>junit</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.hamcrest</groupId> + <artifactId>hamcrest-core</artifactId> + <version>1.3</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.sonatype.sisu</groupId> + <artifactId>sisu-guice</artifactId> + <version>3.2.3</version> + <classifier>no_aop</classifier> + <scope>test</scope> + </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-compat</artifactId> @@ -186,12 +199,11 @@ <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> - <dependency> <groupId>org.eclipse.sisu</groupId> <artifactId>org.eclipse.sisu.plexus</artifactId> + <scope>test</scope> </dependency> - <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-util</artifactId> diff --git a/maven-release-plugin/pom.xml b/maven-release-plugin/pom.xml index 61553b86..2ecf78f7 100644 --- a/maven-release-plugin/pom.xml +++ b/maven-release-plugin/pom.xml @@ -96,8 +96,9 @@ </dependency> <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> + <groupId>org.hamcrest</groupId> + <artifactId>hamcrest-core</artifactId> + <version>1.3</version> <scope>test</scope> </dependency> <dependency>
