From a17c700bd3cb864e5aaf8097b4897f206aa9e028 Mon Sep 17 00:00:00 2001 From: Pawlo Date: Sun, 20 Oct 2019 11:39:47 +0300 Subject: [PATCH] update --- processor/build.gradle | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) 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"