We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1b9192 commit 68604ecCopy full SHA for 68604ec
1 file changed
enum-mapper-processor/build.gradle
@@ -5,11 +5,13 @@ sourceCompatibility = 1.8
5
dependencies {
6
compile project(':enum-mapper-lib')
7
8
- compile 'com.squareup:javapoet:1.11.1'
9
- compile 'com.google.auto:auto-common:0.10'
+ implementation 'com.squareup:javapoet:1.11.1'
+ implementation 'com.google.auto:auto-common:0.10'
10
// unfortunately lib and processor are in the same artifact
11
// see: https://github.com/google/auto/issues/632
12
- compileOnly 'com.google.auto.service:auto-service:1.0-rc4'
+ final GOOGLE_AUTO_SERVICE = 'com.google.auto.service:auto-service:1.0-rc4'
13
+ implementation GOOGLE_AUTO_SERVICE
14
+ annotationProcessor GOOGLE_AUTO_SERVICE
15
16
// https://github.com/tbroyer/gradle-incap-helper
17
final INCAP_VERSION = '0.1'
0 commit comments