We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f0450f commit a17c700Copy full SHA for a17c700
processor/build.gradle
@@ -19,22 +19,12 @@ compileTestKotlin {
19
dependencies {
20
compile project(':annotations')
21
22
- compile 'com.squareup:kotlinpoet:1.0.1'
+ implementation 'com.squareup:kotlinpoet:1.0.1'
23
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
24
implementation "com.google.auto.service:auto-service:1.0-rc4"
25
kapt "com.google.auto.service:auto-service:1.0-rc4"
26
}
27
28
-jar {
29
- from {
30
- configurations.compile.collect {
31
- it.isDirectory() ? it : zipTree(it) }
32
- }
33
-
34
- exclude 'kotlin/**'
35
- exclude 'META-INF/*.kotlin_module'
36
-}
37
38
sourceCompatibility = "8"
39
targetCompatibility = "8"
40
0 commit comments