Added files to GIT that where missing
build / build (push) Has been cancelled

Dev note: Lowery, IDK why these where already added?
This commit is contained in:
2026-05-27 23:06:31 +02:00
parent 978cf8d7eb
commit 88c593c47d
2 changed files with 36 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
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
}
}