Skip to content

Commit

Permalink
Merge 761bb59 into 4acde57
Browse files Browse the repository at this point in the history
  • Loading branch information
denis256 committed Oct 14, 2019
2 parents 4acde57 + 761bb59 commit aa9c9ac
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -15,6 +15,8 @@ before_script:
- gradle wrapper --gradle-version=$GRADLE_VERSION
script:
- ./gradlew clean build
after_success:
- ./gradlew jacocoTestReport coveralls

notifications:
irc:
Expand Down
18 changes: 18 additions & 0 deletions build.gradle
Expand Up @@ -5,6 +5,7 @@ buildscript {

dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.6'
classpath "org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.0"
}
}

Expand All @@ -15,3 +16,20 @@ allprojects {

group = 'org.bitcoinj'
}

subprojects {
apply plugin: 'java'
apply plugin: 'jacoco'
apply plugin: 'com.github.kt3k.coveralls'

jacoco {
toolVersion = '0.8.4'
}

jacocoTestReport {
reports {
xml.enabled = true
html.enabled = true
}
}
}

0 comments on commit aa9c9ac

Please sign in to comment.