gson-compile/gson-compile-example-manifold/build.gradle.kts
JFronny b46ccd5574
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Experiment with manifold extension methods
2022-11-19 00:41:07 +01:00

23 lines
614 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"))
val manifoldVersion = "2022.1.26"
implementation("systems.manifold:manifold-ext-rt:$manifoldVersion")
annotationProcessor("systems.manifold:manifold-ext:$manifoldVersion")
}
tasks.withType<JavaCompile> {
options.compilerArgs.addAll(arrayOf("-AgsonCompileNoReflect", "-Xplugin:Manifold no-bootstrap"))
}