File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Hdfs file output plugin for Embulk
2
2
3
3
[ ![ Build Status] ( https://travis-ci.org/civitaspo/embulk-output-hdfs.svg )] ( https://travis-ci.org/civitaspo/embulk-output-hdfs )
4
+ [ ![ Coverage Status] ( https://coveralls.io/repos/github/civitaspo/embulk-output-hdfs/badge.svg?branch=master )] ( https://coveralls.io/github/civitaspo/embulk-output-hdfs?branch=master )
4
5
5
6
A File Output Plugin for Embulk to write HDFS.
6
7
Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ plugins {
3
3
id " com.github.jruby-gradle.base" version " 0.1.5"
4
4
id " java"
5
5
id " checkstyle"
6
+ id " com.github.kt3k.coveralls" version " 2.4.0"
7
+ id " jacoco"
6
8
}
7
9
import com.github.jrubygradle.JRubyExec
8
10
repositories {
@@ -36,6 +38,12 @@ task classpath(type: Copy, dependsOn: ["jar"]) {
36
38
}
37
39
clean { delete " classpath" }
38
40
41
+ jacocoTestReport {
42
+ reports {
43
+ xml. enabled = true // coveralls plugin depends on xml format report
44
+ html. enabled = true
45
+ }
46
+ }
39
47
checkstyle {
40
48
configFile = file(" ${ project.rootDir} /config/checkstyle/checkstyle.xml" )
41
49
toolVersion = ' 6.14.1'
You can’t perform that action at this time.
0 commit comments