Skip to content

Commit ea9ba5f

Browse files
committed
build script fix
1 parent 8ec863c commit ea9ba5f

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ cache:
88
directories:
99
- $HOME/.gradle/caches/
1010
- $HOME/.gradle/wrapper/
11-
script: ./gradlew build
1211
after_success:
1312
- ./gradlew jacocoTestReport coveralls
1413

build.gradle

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
plugins {
2-
id 'net.saliman.cobertura' version '2.3.1'
3-
id 'com.github.kt3k.coveralls' version '2.8.1'
2+
id 'net.saliman.cobertura' version '2.3.1'
3+
id 'com.github.kt3k.coveralls' version '2.8.1'
44
}
55

6-
cobertura.coverageFormats = ['html', 'xml']
7-
86
apply plugin: 'java'
97
apply plugin: 'maven'
108
apply plugin: 'eclipse'
@@ -17,10 +15,10 @@ group = 'org.scm4j'
1715
version = '3.0-SNAPSHOT'
1816

1917
jacocoTestReport {
20-
reports {
21-
xml.enabled = true // coveralls plugin depends on xml format report
22-
html.enabled = true
23-
}
18+
reports {
19+
xml.enabled = true // coveralls plugin depends on xml format report
20+
html.enabled = true
21+
}
2422
}
2523

2624

0 commit comments

Comments
 (0)