Skip to content

Commit

Permalink
Update to Gradle 8.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mgoellnitz committed Apr 10, 2023
1 parent b14085b commit 05d5d51
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
*
* Copyright 2013-2022 Martin Goellnitz
* Copyright 2013-2023 Martin Goellnitz
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
Expand Down Expand Up @@ -59,7 +59,7 @@ configurations {
}

lombok {
version = "1.18.24"
version = "1.18.26"
sha256 = "39f3922deb679b1852af519eb227157ef2dd0a21eec3542c8ce1b45f2df39742"
}

Expand Down Expand Up @@ -103,13 +103,13 @@ audit {

jacocoTestReport {
reports {
xml.enabled = true // coveralls plugin depends on xml format report
html.enabled = true
xml.required = true // coveralls plugin depends on xml format report
html.required = true
}
}

jacoco {
toolVersion = '0.8.8'
toolVersion = '0.8.9'
}

// Triggers some unit test elements
Expand All @@ -128,12 +128,12 @@ tasks.withType(JavaCompile) {

// maven artifact publication stuff
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
archiveClassifier = 'sources'
from sourceSets.main.allSource
}

task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
archiveClassifier = 'javadoc'
from "${buildDir}/docs/javadoc"
}

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.5.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 05d5d51

Please sign in to comment.