Merge pull request #18 from Randgalt/patch-1

Use provided/compileOnly instead of implementation
This commit is contained in:
Jordan Zimmerman
2020-12-21 07:36:38 -05:00
committed by GitHub
2 changed files with 3 additions and 1 deletions

View File

@@ -294,6 +294,7 @@ annotation. Use `packagePattern` to change this (see Javadoc for details).
<groupId>io.soabase.record-builder</groupId>
<artifactId>record-builder-core</artifactId>
<version>set-version-here</version>
<scope>provided</scope>
</dependency>
```
@@ -340,7 +341,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) {

View File

@@ -13,6 +13,7 @@
<dependency>
<groupId>io.soabase.record-builder</groupId>
<artifactId>record-builder-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>