java-commons/build.gradle.kts
JFronny fd7efac605
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat(muscript): remove type argument in favor of more specific subtypes
2023-08-14 16:55:49 +02:00

17 lines
274 B
Plaintext

plugins {
id("commons.library")
}
version = "1.4-SNAPSHOT"
publishing {
publications {
create<MavenPublication>("maven") {
groupId = "io.gitlab.jfronny"
artifactId = "commons"
from(components["java"])
}
}
}