java-tutorials/gradle-modules/gradle/junit5/build.gradle

27 lines
627 B
Groovy

plugins {
// Apply the java-library plugin to add support for Java Library
id 'java-library'
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
// Only necessary for JUnit 3 and 4 tests
testCompileOnly 'junit:junit:4.12'
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine:5.3.1'
}
repositories {
mavenCentral()
}
test {
useJUnitPlatform {
includeTags 'fast'
excludeTags 'slow'
}
}