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> {
3434 project. tasks. check. dependsOn project. tasks. jacocoTestReport
3535
3636 project. jacoco {
37- toolVersion = ' 0.8.2 '
37+ toolVersion = ' 0.8.7 '
3838 }
3939 }
4040 }
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ public void multiModuleApi() throws Exception {
2828 .build ();
2929 assertThat (result .task (":api" ).getOutcome ()).isEqualTo (TaskOutcome .SUCCESS );
3030 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" );
3232 File listing = allClasses .exists () ? allClasses : index ;
3333 String listingText = FileUtils .readFileToString (listing );
3434 assertThat (listingText ).contains ("sample/Api.html" );
You can’t perform that action at this time.
0 commit comments