java-commons/commons-gson/build.gradle.kts
JFronny 1d6b73c0b4
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Mark gson as api
2022-12-30 12:10:54 +01:00

23 lines
491 B
Plaintext

plugins {
id("commons.library")
}
dependencies {
api("io.gitlab.jfronny:gson:2.11.0-SNAPSHOT")
implementation(project(":"))
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.0")
}
publishing {
publications {
create<MavenPublication>("maven") {
groupId = "io.gitlab.jfronny"
artifactId = "commons-gson"
from(components["java"])
}
}
}