java-commons/commons-jlhttp/build.gradle.kts
JFronny 28b08998b1
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
JLHTTP in JPMS
2023-05-05 17:48:31 +02:00

20 lines
309 B
Plaintext

import io.gitlab.jfronny.scripts.*
plugins {
id("commons.library")
}
dependencies {
}
publishing {
publications {
create<MavenPublication>("maven") {
groupId = "io.gitlab.jfronny"
artifactId = "commons-jlhttp"
from(components["java"])
}
}
}