Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate to JUnit 5 #135

Merged
merged 1 commit into from
Aug 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Migrate to JUnit 5
  • Loading branch information
jodastephen committed Aug 17, 2024
commit 0d8ce2c49fc03109e23927c22189883f5a89d718
13 changes: 3 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -520,17 +520,11 @@
<optional>true</optional><!-- mandatory in Scala -->
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.tngtech.java</groupId>
<artifactId>junit-dataprovider</artifactId>
<version>${junit-dataprovider.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<!-- ==================================================================== -->
Expand Down Expand Up @@ -791,9 +785,8 @@
<!-- ==================================================================== -->
<properties>
<!-- Dependencies -->
<junit-dataprovider.version>1.13.1</junit-dataprovider.version>
<joda-convert.version>2.2.3</joda-convert.version>
<junit.version>4.13.2</junit.version>
<junit.version>5.11.0</junit.version>

<!-- Common control parameters -->
<joda.osgi.packages>org.joda.money.*</joda.osgi.packages>
Expand Down
Loading
Loading