gson-compile/gson-compile-processor/build.gradle.kts
JFronny 80c91b6409
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Use jfgit-hosted commons
2022-11-01 19:07:39 +01:00

28 lines
589 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(project(":gson-compile-annotations"))
implementation("org.jetbrains:annotations:23.0.0")
implementation("io.gitlab.jfronny:commons:2022.11.1+17-58-36")
implementation("com.squareup:javapoet:1.13.0")
}
publishing {
publications {
create<MavenPublication>("maven") {
from(components["java"])
}
}
}