Skip to content

Commit 68604ec

Browse files
committed
the google auto-service processor now works again
1 parent b1b9192 commit 68604ec

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

enum-mapper-processor/build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ sourceCompatibility = 1.8
55
dependencies {
66
compile project(':enum-mapper-lib')
77

8-
compile 'com.squareup:javapoet:1.11.1'
9-
compile 'com.google.auto:auto-common:0.10'
8+
implementation 'com.squareup:javapoet:1.11.1'
9+
implementation 'com.google.auto:auto-common:0.10'
1010
// unfortunately lib and processor are in the same artifact
1111
// see: https://github.com/google/auto/issues/632
12-
compileOnly 'com.google.auto.service:auto-service:1.0-rc4'
12+
final GOOGLE_AUTO_SERVICE = 'com.google.auto.service:auto-service:1.0-rc4'
13+
implementation GOOGLE_AUTO_SERVICE
14+
annotationProcessor GOOGLE_AUTO_SERVICE
1315

1416
// https://github.com/tbroyer/gradle-incap-helper
1517
final INCAP_VERSION = '0.1'

0 commit comments

Comments
 (0)