gson-compile/gson-compile-annotations/build.gradle.kts
JFronny 58b23974b1
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Set up artifacts
2022-11-01 18:14:48 +01:00

23 lines
304 B
Plaintext

plugins {
`java-library`
id("jf.maven-publish")
}
group = "io.gitlab.jfronny.gson"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
}
publishing {
publications {
create<MavenPublication>("maven") {
from(components["java"])
}
}
}