Skip to content

Instantly share code, notes, and snippets.

@kazusato
Last active September 15, 2019 00:17
Show Gist options
  • Save kazusato/46ec1a8b3d041e61ef02207190cb751d to your computer and use it in GitHub Desktop.
Save kazusato/46ec1a8b3d041e61ef02207190cb751d to your computer and use it in GitHub Desktop.
JUnit5 Gradle Dependencies

Groovy DSL

testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.5.2'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.5.2'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.5.2'
testCompile group: 'org.assertj', name: 'assertj-core', version: '3.13.2'

Kotlin DSL -- Not updated

testCompile("org.junit.jupiter", "junit-jupiter-api", "5.2.0")
testCompile("org.junit.jupiter", "junit-jupiter-engine", "5.2.0")
testCompile("org.junit.platform", "junit-platform-engine", "1.4.1")
testCompile("org.junit.platform", "junit-platform-launcher", "1.4.1")
testCompile("org.assertj", "assertj-core", "3.12.2")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment