java-commons/commons-http-server/build.gradle.kts
JFronny 8aebf179d4
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
BREAKING: modularize
2023-09-21 21:08:40 +02:00

20 lines
314 B
Plaintext

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