Skip to content

Commit

Permalink
Move junit to dependencyManagement and add missing slf4j-simple for t…
Browse files Browse the repository at this point in the history
…ests
  • Loading branch information
slachiewicz committed Jun 11, 2023
1 parent 6429741 commit 357268a
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,18 @@
<project.build.outputTimestamp>2022-06-23T12:18:27Z</project.build.outputTimestamp>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.9.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<!--
Apache Maven dependencies
Expand Down Expand Up @@ -99,7 +111,6 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.9.3</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -108,5 +119,11 @@
<version>3.24.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.36</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

0 comments on commit 357268a

Please sign in to comment.