Skip to content

Commit

Permalink
build: Upgrade Gradle to 8.7 #47
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasz-gryzbon committed Apr 21, 2024
1 parent dd7a807 commit 90a83f1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ repositories {

jacocoTestReport {
reports {
xml.enabled(true)
html.enabled(true)
html.setDestination(project.provider(() -> new File("${project.buildDir}/reports/coverage")))
xml.required = true
html.required = true
html.outputLocation = layout.buildDirectory.dir('${project.buildDir}/reports/coverage")')
}
afterEvaluate {
classDirectories.setFrom(files(classDirectories.files.collect {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion publishing.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ bootJar {

jar {
enabled = true
classifier = ""
archiveClassifier = ""
}

tasks.register('sourcesJar', Jar) {
Expand Down

0 comments on commit 90a83f1

Please sign in to comment.