a366b1a4bf
Signed-off-by: Zacharias <alienfromdia@proton.me>
27 lines
530 B
Groovy
27 lines
530 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'me.neurodock'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url = "https://git.server.4zellen.se/api/packages/neurodock/maven"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation "me.neurodock:Core:1.6"
|
|
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()
|
|
} |