Initial Commit

Signed-off-by: Zacharias <zacharias@4zellen.se>
This commit is contained in:
2026-05-08 23:06:45 +02:00
committed by Zacharias
commit 2634a01ad8
11 changed files with 442 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
plugins {
id 'java'
}
group = 'me.zacharias'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
implementation "me.zacharias.neurodock:Core:1.3"
implementation 'com.formdev:flatlaf:3.4.1'
testImplementation platform('org.junit:junit-bom:6.0.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
test {
useJUnitPlatform()
}