gson-compile/gson-compile-core/build.gradle.kts
JFronny 8d50990c1a
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Utility for reading lists
2022-11-01 19:23:51 +01:00

26 lines
487 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:2022.11.1+17-58-36")
api("io.gitlab.jfronny:commons-gson:2022.11.1+17-58-36")
}
publishing {
publications {
create<MavenPublication>("maven") {
from(components["java"])
}
}
}