gson-compile/gson-compile-processor-core/build.gradle.kts
JFronny 6805ff6b6f
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Support JPMS.
Since that seems to be incompatible with manifold, that has been removed.
Contains breaking changes!
2023-01-21 15:01:54 +01:00

23 lines
416 B
Plaintext

plugins {
`java-library`
id("jf.maven-publish")
}
repositories {
mavenCentral()
maven("https://maven.frohnmeyer-wds.de/artifacts")
}
dependencies {
implementation("org.jetbrains:annotations:24.0.0")
implementation("io.gitlab.jfronny:commons:1.1-SNAPSHOT")
}
publishing {
publications {
create<MavenPublication>("maven") {
from(components["java"])
}
}
}