Skip to content

Instantly share code, notes, and snippets.

@xfun68
Created August 8, 2019 08:47
Show Gist options
  • Select an option

  • Save xfun68/ec6f407ab430e434316326e1a3a252ea to your computer and use it in GitHub Desktop.

Select an option

Save xfun68/ec6f407ab430e434316326e1a3a252ea to your computer and use it in GitHub Desktop.
simplest JUnit 5 build.gradle
plugins {
id 'java'
}
group 'com.twuc'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.5.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.5.1'
}
test {
useJUnitPlatform()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment