diff --git a/processor/build.gradle b/processor/build.gradle index c9ff9b3..3a3053b 100644 --- a/processor/build.gradle +++ b/processor/build.gradle @@ -19,22 +19,12 @@ compileTestKotlin { dependencies { compile project(':annotations') - compile 'com.squareup:kotlinpoet:1.0.1' + implementation 'com.squareup:kotlinpoet:1.0.1' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation "com.google.auto.service:auto-service:1.0-rc4" kapt "com.google.auto.service:auto-service:1.0-rc4" } -jar { - from { - configurations.compile.collect { - it.isDirectory() ? it : zipTree(it) } - } - - exclude 'kotlin/**' - exclude 'META-INF/*.kotlin_module' -} - sourceCompatibility = "8" targetCompatibility = "8"