88c593c47d
build / build (push) Has been cancelled
Dev note: Lowery, IDK why these where already added?
31 lines
570 B
Groovy
31 lines
570 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
group = 'me.zacharias.neurodock'
|
|
version = '0.1.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation 'io.github.classgraph:classgraph:4.8.184'
|
|
api "org.json:json:20250107"
|
|
|
|
|
|
testImplementation platform('org.junit:junit-bom:6.0.0')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(javaVersion)) // Set Java version
|
|
}
|
|
} |