build.gradle in embulk-output-td-0.1.4 vs build.gradle in embulk-output-td-0.1.5
- old
+ new
@@ -1,21 +1,24 @@
plugins {
id "com.jfrog.bintray" version "1.1"
id "com.github.jruby-gradle.base" version "0.1.5"
id "java"
}
+
+apply from: 'gradle/check.gradle'
+
import com.github.jrubygradle.JRubyExec
repositories {
mavenCentral()
jcenter()
mavenLocal()
}
configurations {
provided
}
-version = "0.1.4"
+version = "0.1.5"
compileJava.options.encoding = 'UTF-8' // source encoding
sourceCompatibility = 1.7
targetCompatibility = 1.7
@@ -28,9 +31,10 @@
compile "org.msgpack:msgpack:0.6.11"
testCompile "junit:junit:4.+"
testCompile "org.bigtesting:fixd:1.0.0"
testCompile "org.embulk:embulk-core:0.6.25:tests"
+ testCompile "org.mockito:mockito-core:1.9.5"
}
task classpath(type: Copy, dependsOn: ["jar"]) {
doFirst { file("classpath").deleteDir() }
from (configurations.runtime - configurations.provided + files(jar.archivePath))