gson-compile/gson-compile-example/build.gradle.kts

18 lines
382 B
Plaintext
Raw Normal View History

2022-10-31 20:52:48 +01:00
plugins {
2022-11-01 18:09:26 +01:00
java
2022-10-31 20:52:48 +01:00
}
repositories {
mavenCentral()
2022-11-01 19:07:39 +01:00
maven("https://maven.frohnmeyer-wds.de/artifacts")
2022-10-31 20:52:48 +01:00
}
dependencies {
annotationProcessor(project(":gson-compile-processor"))
compileOnly(project(":gson-compile-annotations"))
implementation(project(":gson-compile-core"))
}
tasks.withType<JavaCompile> {
options.compilerArgs.add("-AgsonCompileNoReflect")
}