build.gradle in embulk-output-command-0.1.0 vs build.gradle in embulk-output-command-0.1.1
- old
+ new
@@ -10,15 +10,15 @@
}
configurations {
provided
}
-version = "0.1.0"
+version = "0.1.1"
dependencies {
- compile "org.embulk:embulk-core:0.4.3"
- provided "org.embulk:embulk-core:0.4.3"
+ compile "org.embulk:embulk-core:0.4.8"
+ provided "org.embulk:embulk-core:0.4.8"
// compile "YOUR_JAR_DEPENDENCY_GROUP:YOUR_JAR_DEPENDENCY_MODULE:YOUR_JAR_DEPENDENCY_VERSION"
testCompile "junit:junit:4.+"
}
task classpath(type: Copy, dependsOn: ["jar"]) {
@@ -36,12 +36,12 @@
task gemspec << { file("build/gemspec").write($/
Gem::Specification.new do |spec|
spec.name = "${project.name}"
spec.version = "${project.version}"
- spec.authors = ["FURUHASHI Sadayuki"]
+ spec.authors = ["Sadayuki Furuhashi"]
spec.summary = %[Command file output plugin for Embulk]
- spec.description = %[Command file output plugin is an Embulk plugin that executes a command writes files to its stdin. Search the formatter plugins by 'embulk-formatter' keyword.]
+ spec.description = %[Executes a command and reads data from its STDOUT.]
spec.email = ["frsyuki@gmail.com"]
spec.licenses = ["Apache 2.0"]
spec.homepage = "https://github.com/embulk/embulk-output-command"
spec.files = `git ls-files`.split("\n") + Dir["classpath/*.jar"]