File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
main/groovy/com/vanniktech/android/junit/jacoco
test/groovy/com/vanniktech/android/junit/jacoco Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ Those are all available configurations - shown with default values and their typ
71
71
72
72
``` groovy
73
73
junitJacoco {
74
- jacocoVersion = '0.7.2.201409121644 ' // type String
74
+ jacocoVersion = '0.8.2 ' // type String
75
75
ignoreProjects = [] // type String array
76
76
excludes // type String List
77
77
includeNoLocationClasses = false // type boolean
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ class JunitJacocoExtension {
9
9
* define the version of jacoco which should be used
10
10
* @since 0.3.0
11
11
*/
12
- String jacocoVersion = ' 0.7.2.201409121644 '
12
+ String jacocoVersion = ' 0.8.2 '
13
13
14
14
/**
15
15
* subprojects that should be ignored
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ class GenerationTest {
169
169
private void assertJacocoAndroidWithFlavors (final Project project ) {
170
170
assert project. plugins. hasPlugin(JacocoPlugin )
171
171
172
- assert project. jacoco. toolVersion == ' 0.7.2.201409121644 '
172
+ assert project. jacoco. toolVersion == ' 0.8.2 '
173
173
174
174
assertTask(project, ' red' , ' debug' )
175
175
assertTask(project, ' red' , ' release' )
@@ -220,7 +220,7 @@ class GenerationTest {
220
220
private void assertJacocoAndroidWithoutFlavors (final Project project ) {
221
221
assert project. plugins. hasPlugin(JacocoPlugin )
222
222
223
- assert project. jacoco. toolVersion == ' 0.7.2.201409121644 '
223
+ assert project. jacoco. toolVersion == ' 0.8.2 '
224
224
225
225
final def debugTask = project. tasks. findByName(' jacocoTestReportDebug' )
226
226
@@ -298,7 +298,7 @@ class GenerationTest {
298
298
private void assertJacocoJava (final Project project ) {
299
299
assert project. plugins. hasPlugin(JacocoPlugin )
300
300
301
- assert project. jacoco. toolVersion == ' 0.7.2.201409121644 '
301
+ assert project. jacoco. toolVersion == ' 0.8.2 '
302
302
303
303
final def task = project. tasks. findByName(' jacocoTestReport' )
304
304
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ class JunitJacocoExtensionTest {
6
6
@Test void defaults () {
7
7
def extension = new JunitJacocoExtension ()
8
8
9
- assert extension. jacocoVersion == ' 0.7.2.201409121644 '
9
+ assert extension. jacocoVersion == ' 0.8.2 '
10
10
assert extension. ignoreProjects. size() == 0
11
11
assert extension. excludes == null
12
12
assert ! extension. includeNoLocationClasses
You can’t perform that action at this time.
0 commit comments