gson-compile/gson-compile-example/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

21 lines
441 B
Plaintext

plugins {
java
}
group = "io.gitlab.jfronny.gson"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven("https://maven.frohnmeyer-wds.de/artifacts")
}
dependencies {
annotationProcessor(project(":gson-compile-processor"))
compileOnly(project(":gson-compile-annotations"))
implementation(project(":gson-compile-core"))
}
tasks.withType<JavaCompile> {
options.compilerArgs.add("-AgsonCompileNoReflect")
}