Skip to content

Commit

Permalink
Issue #22: Update to JUnit-recommended way of declaring dependency us…
Browse files Browse the repository at this point in the history
…ing BOM
  • Loading branch information
ALRubinger committed Nov 16, 2024
1 parent 9298432 commit 040bdce
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
<version.io.github.martinvisser>0.1.0</version.io.github.martinvisser>

<!-- Versioning for Dependencies -->
<version.org.junit.jupiter>5.10.1</version.org.junit.jupiter>
<version.org.junit>5.10.1</version.org.junit>

<!-- Versioning for Test Dependencies -->
<version.org.assertj>3.25.2</version.org.assertj>
Expand Down Expand Up @@ -138,18 +138,14 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${version.org.junit.jupiter}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${version.org.junit.jupiter}</version>
<scope>test</scope>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${version.org.junit}</version>
<type>pom</type>
<scope>import</scope>
</dependency>


<!--
Transitive Dependency Management
Expand Down Expand Up @@ -201,7 +197,8 @@
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

Expand Down

0 comments on commit 040bdce

Please sign in to comment.