2021-09-11 13:54:36 -04:00
|
|
|
plugins {
|
|
|
|
`java-library`
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api("org.apache.commons:commons-math3:3.6.1")
|
2024-03-21 23:35:05 -04:00
|
|
|
implementation("com.google.guava:guava:33.1.0-jre")
|
2021-09-11 13:54:36 -04:00
|
|
|
|
2024-03-21 23:47:41 -04:00
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter:5.10.2")
|
2021-09-11 13:54:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
2021-12-07 15:26:16 -05:00
|
|
|
|
|
|
|
tasks.named("test").configure {
|
2022-10-20 11:35:03 -04:00
|
|
|
// Write marker file so we can detect if task was configured
|
|
|
|
file("task-configured.txt").writeText("true")
|
2022-03-17 13:15:38 -04:00
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|