build.gradle in embulk-input-kintone-0.1.1 vs build.gradle in embulk-input-kintone-0.1.2

- old
+ new

@@ -11,11 +11,11 @@ } configurations { provided } -version = "0.1.1" +version = "0.1.2" sourceCompatibility = 1.8 targetCompatibility = 1.8 dependencies { @@ -24,9 +24,11 @@ compile group: 'com.cybozu.kintone', name: 'kintone-sdk', version: '0.4.0' testCompile "junit:junit:4.+" testCompile 'org.embulk:embulk-standards:0.9.12' testCompile 'org.embulk:embulk-test:0.9.12' + testCompile "org.mockito:mockito-core:1.+" + testCompile "org.embulk:embulk-core:0.9.12:tests" } task classpath(type: Copy, dependsOn: ["jar"]) { doFirst { file("classpath").deleteDir() } from (configurations.runtime - configurations.provided + files(jar.archivePath))