Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
language: java
after_success:
- bash <(curl -s https://codecov.io/bash
jdk:
- oraclejdk8
sudo: false
Expand Down
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@ dependencies {
testCompile group: 'com.nhaarman.mockitokotlin2', name: 'mockito-kotlin', version: '2.1.0'
}

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

compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
Expand Down
4 changes: 2 additions & 2 deletions script/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" != "" ]; then
./gradlew bintrayUpload --stacktrace
else
echo -e '#### Build for Test => Branch ['$TRAVIS_BRANCH'] Pull Request ['$TRAVIS_PULL_REQUEST'] ####'
./gradlew build
fi
./gradlew clean build jacocoTestReport
fi