2019-12-17 22:09:33 -05:00
|
|
|
plugins {
|
|
|
|
`java-library`
|
|
|
|
`java-test-fixtures`
|
|
|
|
}
|
|
|
|
|
2024-01-15 13:57:48 -05:00
|
|
|
sourceCompatibility = "1.8"
|
|
|
|
targetCompatibility = "1.8"
|
|
|
|
|
2019-12-17 22:09:33 -05:00
|
|
|
dependencies {
|
|
|
|
testFixturesApi("org.junit.jupiter:junit-jupiter-api:5.5.2")
|
|
|
|
testFixturesImplementation("org.junit.jupiter:junit-jupiter-engine:5.5.2")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|