File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed
Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 33
44// general configuration
55jacoco {
6- toolVersion = " 0.8.7 "
7- reportsDir = file (" $b uildDir /reports/jacoco" )
6+ toolVersion = " 0.8.10 "
7+ reportsDirectory = layout . projectDirectory . dir (" $r ootDir /build /reports/jacoco" )
88}
99
1010jacocoTestReport {
1111 reports {
12- xml. enabled true
13- csv. enabled false
14- html. enabled true
15- html. destination file(" ${ buildDir } /reports/jacoco" )
12+ xml. required = true
13+ csv. required = false
14+ html. required = true
15+ html. destination file(" ${ rootDir } /build /reports/jacoco" )
1616 }
1717
1818 // what to exclude from coverage report (files that should not be analyzed!)
@@ -28,7 +28,7 @@ jacocoTestReport {
2828 ]
2929
3030 getClassDirectories(). setFrom(fileTree(
31- dir : " $b uildDir /classes/" ,
31+ dir : " $r ootDir /build /classes/" ,
3232 excludes : excludes
3333 ))
3434
Original file line number Diff line number Diff line change 11/* Maven publish - start */
22task sourcesJar (type : Jar ) {
3- classifier " sources"
3+ archiveClassifier . set( " sources" )
44 from sourceSets. main. allJava
55}
66
77task javadocJar (type : Jar , dependsOn : javadoc) {
8- classifier " javadoc"
8+ archiveClassifier . set( " javadoc" )
99 from javadoc. destinationDir
1010}
1111
@@ -91,7 +91,7 @@ if (project.hasProperty('user') && project.hasProperty('password') && project.ha
9191
9292 model {
9393 tasks. generatePomFileForMavenJavaPublication {
94- destination = file(" $b uildDir /generated-pom.xml" )
94+ destination = file(" $r ootDir /generated-pom.xml" )
9595 }
9696 }
9797}
Original file line number Diff line number Diff line change 11# Mon Dec 02 10:39:11 CET 2019
2- distributionUrl =https\://services.gradle.org/distributions/gradle-7.6 -bin.zip
2+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.4 -bin.zip
33distributionBase =GRADLE_USER_HOME
44distributionPath =wrapper/dists
55zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments