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