Files
dshackle/foundation/build.gradle
2026-01-06 16:32:03 +04:00

34 lines
567 B
Groovy

plugins {
id 'org.jetbrains.kotlin.jvm' version '2.3.0'
id 'maven-publish'
}
repositories {
mavenLocal()
mavenCentral()
}
group = 'dshackle'
dependencies {
implementation 'org.yaml:snakeyaml:1.24'
testImplementation 'org.junit.jupiter:junit-jupiter:6.0.1'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
test {
useJUnitPlatform()
}
version '1.0.0'
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
repositories {
mavenLocal()
}
}