Skip to content

Commit a2f6906

Browse files
committed
gradle clean check on Travis
1 parent dd300cc commit a2f6906

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cache:
1111
- $HOME/.gradle/wrapper/
1212

1313
script:
14-
- "./gradlew check"
14+
- "./gradlew clean check"
1515
- "./gradlew jacocoTestReport"
1616
after_success:
1717
- bash <(curl -s https://codecov.io/bash)

gradle.properties

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,6 @@ POM_LICENCE_NAME=The Apache Software License, Version 2.0
1010
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
1111
POM_LICENCE_DIST=repo
1212
POM_DEVELOPER_ID=pengrad
13-
POM_DEVELOPER_NAME=Stas Parshin
13+
POM_DEVELOPER_NAME=Stas Parshin
14+
15+
org.gradle.jvmargs='-Dfile.encoding=UTF-8'

library/build.gradle

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@ dependencies {
1414
testCompile 'org.reflections:reflections:0.9.12'
1515
}
1616

17-
compileJava.options.encoding = 'UTF-8'
18-
tasks.withType(JavaCompile) {
19-
options.encoding = 'UTF-8'
20-
}
21-
2217
jacoco {
2318
toolVersion = "0.8.5"
2419
}

0 commit comments

Comments
 (0)