18 lines
382 B
Plaintext
18 lines
382 B
Plaintext
plugins {
|
|
java
|
|
}
|
|
|
|
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")
|
|
} |