Skip to content

Commit

Permalink
Merge a1cee66 into ea545bb
Browse files Browse the repository at this point in the history
  • Loading branch information
muga committed Jul 13, 2017
2 parents ea545bb + a1cee66 commit 2acbce2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
language: java
jdk: oraclejdk8 # Use oraclejdk8 because checkstyle jar is compiled by jdk8 but, released plugin is still built by oraclejdk7.
script:
- ./gradlew --info check jacocoTestReport
- ./gradlew --info check
after_success:
- ./gradlew jacocoTestReport coveralls
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Apache Calcite filter plugin for Embulk

[![Coverage Status](https://coveralls.io/repos/github/muga/embulk-filter-calcite/badge.svg?branch=master)](https://coveralls.io/github/muga/embulk-filter-calcite?branch=master)

## Overview

* **Plugin type**: filter
Expand Down
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {
id "checkstyle"
id "findbugs"
id "jacoco"
id "com.github.kt3k.coveralls" version "2.4.0"
}
import com.github.jrubygradle.JRubyExec

Expand Down Expand Up @@ -64,6 +65,13 @@ findbugs {
ignoreFailures = true
}

jacocoTestReport {
reports {
xml.enabled = true // coveralls plugin depends on xml format report
html.enabled = true
}
}

task gem(type: JRubyExec, dependsOn: ["gemspec", "classpath"]) {
jrubyArgs "-rrubygems/gem_runner", "-eGem::GemRunner.new.run(ARGV)", "build"
script "${project.name}.gemspec"
Expand Down

0 comments on commit 2acbce2

Please sign in to comment.