mirror of
https://github.com/tribufu/tribufu-java
synced 2026-05-06 14:57:27 +00:00
26 lines
435 B
Groovy
26 lines
435 B
Groovy
plugins {
|
|
id "java-library"
|
|
}
|
|
|
|
version = "0.0.4"
|
|
archivesBaseName = "tribufu"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
api "org.apache.commons:commons-math3:3.6.1"
|
|
implementation "com.google.guava:guava:31.1-jre"
|
|
testImplementation "org.junit.jupiter:junit-jupiter:5.9.1"
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(11)
|
|
}
|
|
}
|
|
|
|
tasks.named("test") {
|
|
useJUnitPlatform()
|
|
}
|