build.gradle in embulk-input-kintone-0.1.0 vs build.gradle in embulk-input-kintone-0.1.1
- old
+ new
@@ -11,21 +11,23 @@
}
configurations {
provided
}
-version = "0.1.0"
+version = "0.1.1"
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile "org.embulk:embulk-core:0.9.12"
provided "org.embulk:embulk-core:0.9.12"
compile group: 'com.cybozu.kintone', name: 'kintone-sdk', version: '0.4.0'
- // compile "YOUR_JAR_DEPENDENCY_GROUP:YOUR_JAR_DEPENDENCY_MODULE:YOUR_JAR_DEPENDENCY_VERSION"
+
testCompile "junit:junit:4.+"
+ testCompile 'org.embulk:embulk-standards:0.9.12'
+ testCompile 'org.embulk:embulk-test:0.9.12'
}
task classpath(type: Copy, dependsOn: ["jar"]) {
doFirst { file("classpath").deleteDir() }
from (configurations.runtime - configurations.provided + files(jar.archivePath))
@@ -81,10 +83,10 @@
spec.authors = ["giwa"]
spec.summary = %[Kintone input plugin for Embulk]
spec.description = %[Loads records from Kintone.]
spec.email = ["ugw.gi.world@gmail.com"]
spec.licenses = ["MIT"]
- # TODO set this: spec.homepage = "https://github.com/ugw.gi.world/embulk-input-kintone"
+ spec.homepage = "https://github.com/trocco-io/embulk-input-kintone"
spec.files = `git ls-files`.split("\n") + Dir["classpath/*.jar"]
spec.test_files = spec.files.grep(%r"^(test|spec)/")
spec.require_paths = ["lib"]