Skip to content

Commit

Permalink
improve dependency declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo committed Mar 16, 2023
1 parent 3064cff commit dcd82bc
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
5 changes: 0 additions & 5 deletions maven-release-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,5 @@
<artifactId>slf4j-api</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
16 changes: 14 additions & 2 deletions maven-release-manager/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand Down
5 changes: 3 additions & 2 deletions maven-release-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit dcd82bc

Please sign in to comment.