27 lines
557 B
Groovy
27 lines
557 B
Groovy
plugins {
|
|
id 'java'
|
|
id("com.gradleup.shadow") version "9.4.2"
|
|
}
|
|
|
|
group = 'me.neurodock'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url = "https://git.server.4zellen.se/api/packages/neurodock/maven"
|
|
name = "gitea"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation platform('org.junit:junit-bom:6.0.0')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
|
|
|
compileOnly("me.neurodock:Plugin-API:0.1.2")
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |