gson-compile/gson-compile-core/build.gradle.kts
JFronny 1ade974e31
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Use new commons version
2022-11-03 15:44:55 +01:00

26 lines
475 B
Plaintext

plugins {
`java-library`
id("jf.maven-publish")
}
group = "io.gitlab.jfronny.gson"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven("https://maven.frohnmeyer-wds.de/artifacts")
}
dependencies {
implementation("io.gitlab.jfronny:commons:1.0-SNAPSHOT")
api("io.gitlab.jfronny:commons-gson:1.0-SNAPSHOT")
}
publishing {
publications {
create<MavenPublication>("maven") {
from(components["java"])
}
}
}