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