build.gradle in embulk-input-http-0.21.0 vs build.gradle in embulk-input-http-0.22.0
- old
+ new
@@ -11,19 +11,19 @@
}
configurations {
provided
}
-version = "0.21.0"
+version = "0.22.0"
sourceCompatibility = 1.7
targetCompatibility = 1.7
dependencies {
- compile "org.embulk:embulk-core:0.9.14"
- provided "org.embulk:embulk-core:0.9.14"
- compile "org.apache.httpcomponents:httpclient:4.5.5"
+ compile "org.embulk:embulk-core:0.9.17"
+ provided "org.embulk:embulk-core:0.9.17"
+ compile "org.apache.httpcomponents:httpclient:4.5.9"
compile "commons-io:commons-io:2.6"
testCompile "junit:junit:4.+"
}
task classpath(type: Copy, dependsOn: ["jar"]) {
@@ -78,10 +78,10 @@
spec.name = "${project.name}"
spec.version = "${project.version}"
spec.authors = ["Takuma kanari"]
spec.email = ["chemtrails.t@gmail.com"]
spec.summary = %q{Embulk plugin for http input}
- spec.description = %q{Fetch data via http}
+ spec.description = %q{Fetch data via http(s)}
spec.homepage = "https://github.com/takumakanari/embulk-input-http"
spec.license = "MIT"
spec.files = `git ls-files`.split("\n") + Dir["classpath/*.jar"]
spec.test_files = spec.files.grep(%r"^(test|spec)/")