2021-09-11 13:54:36 -04:00
|
|
|
plugins {
|
|
|
|
`java-library`
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api("org.apache.commons:commons-math3:3.6.1")
|
2022-03-18 08:22:17 -04:00
|
|
|
implementation("com.google.guava:guava:31.1-jre")
|
2021-09-11 13:54:36 -04:00
|
|
|
|
2022-07-26 18:36:30 -04:00
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter:5.9.0")
|
2021-09-11 13:54:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
2021-12-07 15:26:16 -05:00
|
|
|
|
|
|
|
tasks.named("test").configure {
|
2022-03-17 13:15:38 -04:00
|
|
|
// Echo an output value so we can detect configuration-cache usage
|
|
|
|
println("::set-output name=task_configured::yes")
|
|
|
|
|
2021-12-07 15:26:16 -05:00
|
|
|
doLast {
|
|
|
|
if (System.getProperties().containsKey("verifyCachedBuild")) {
|
|
|
|
throw RuntimeException("Build was not cached: unexpected execution of test task")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|