File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
main/groovy/io/spring/gradle/convention
test/java/io/spring/gradle/convention Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ class JacocoPlugin implements Plugin<Project> {
34
34
project. tasks. check. dependsOn project. tasks. jacocoTestReport
35
35
36
36
project. jacoco {
37
- toolVersion = ' 0.8.2 '
37
+ toolVersion = ' 0.8.7 '
38
38
}
39
39
}
40
40
}
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ public void multiModuleApi() throws Exception {
28
28
.build ();
29
29
assertThat (result .task (":api" ).getOutcome ()).isEqualTo (TaskOutcome .SUCCESS );
30
30
File allClasses = new File (testKit .getRootDir (), "build/api/allclasses-noframe.html" );
31
- File index = new File (testKit .getRootDir (), "build/api/allclasses.html" );
31
+ File index = new File (testKit .getRootDir (), "build/api/allclasses-index .html" );
32
32
File listing = allClasses .exists () ? allClasses : index ;
33
33
String listingText = FileUtils .readFileToString (listing );
34
34
assertThat (listingText ).contains ("sample/Api.html" );
You can’t perform that action at this time.
0 commit comments