1b4cf0f570
Signed-off-by: Zacharias <zacharias@4zellen.se>
25 lines
464 B
Groovy
25 lines
464 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'me.zacharias'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
mavenLocal()
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation "me.zacharias.neurodock:Core:1.5"
|
|
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()
|
|
} |