Skip to content

Commit

Permalink
Update dependency on JUnit to 5.5.2 (#278 / #279)
Browse files Browse the repository at this point in the history
Update the dependency to get access to the new
`InvocationInterceptor`, so that #10 can be fixed.

Closes: #278
Related: #10 
PR: #279
  • Loading branch information
Nicolai Parlog committed Jun 20, 2020
1 parent 4da75d5 commit 9712299
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ repositories {
}

dependencies {
implementation(group = "org.junit.jupiter", name = "junit-jupiter-api", version = "5.4.2")
implementation(group = "org.junit.jupiter", name = "junit-jupiter-params", version = "5.4.2")
implementation(group = "org.junit.jupiter", name = "junit-jupiter-api", version = "5.5.2")
implementation(group = "org.junit.jupiter", name = "junit-jupiter-params", version = "5.5.2")

testImplementation(group = "org.junit.jupiter", name = "junit-jupiter-engine", version = "5.4.2")
testImplementation(group = "org.junit.platform", name = "junit-platform-launcher", version = "1.4.2")
testImplementation(group = "org.junit.platform", name = "junit-platform-testkit", version = "1.4.2")
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter-engine", version = "5.5.2")
testImplementation(group = "org.junit.platform", name = "junit-platform-launcher", version = "1.5.2")
testImplementation(group = "org.junit.platform", name = "junit-platform-testkit", version = "1.5.2")

testImplementation(group = "org.assertj", name = "assertj-core", version = "3.15.0")
testImplementation(group = "org.mockito", name = "mockito-core", version = "3.3.3")
Expand Down

0 comments on commit 9712299

Please sign in to comment.