Use compileOnly instead of implementation

Since most users only need the annotations.
This commit is contained in:
Marc Philipp
2020-12-21 11:43:56 +01:00
committed by GitHub
parent c9ba514773
commit c1e771bbbe

View File

@@ -340,7 +340,7 @@ Add the following to your build.gradle file:
```
dependencies {
annotationProcessor 'io.soabase.record-builder:record-builder-processor:$version-goes-here'
implementation 'io.soabase.record-builder:record-builder-core:$version-goes-here'
compileOnly 'io.soabase.record-builder:record-builder-core:$version-goes-here'
}
tasks.withType(JavaCompile) {