Skip to content

Commit 4cbd22b

Browse files
committed
Gradle 8.0.2, Dokka 1.8.10, Checkstyle 10.8.0
1 parent 3fad7cd commit 4cbd22b

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

build.gradle

+3-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ plugins {
2020
id 'org.ajoberstar.grgit' version '4.1.1'
2121
id 'io.spring.dependency-management' version '1.1.0'
2222
id 'com.jfrog.artifactory' version '4.31.4' apply false
23-
id 'org.jetbrains.dokka' version '1.7.20'
23+
id 'org.jetbrains.dokka' version "$kotlinVersion"
2424
id 'org.asciidoctor.jvm.pdf' version '3.3.2'
2525
id 'org.asciidoctor.jvm.gems' version '3.3.2'
2626
id 'org.asciidoctor.jvm.convert' version '3.3.2'
@@ -322,10 +322,9 @@ configure(javaProjects) { subproject ->
322322

323323
jacocoTestReport {
324324
reports {
325-
xml.required = true
326325
csv.required = false
327326
html.required = false
328-
xml.destination file("${buildDir}/reports/jacoco/test/jacocoTestReport.xml")
327+
xml.outputLocation = file("${buildDir}/reports/jacoco/test/jacocoTestReport.xml")
329328
}
330329
}
331330

@@ -366,7 +365,7 @@ configure(javaProjects) { subproject ->
366365

367366
checkstyle {
368367
configDirectory.set(rootProject.file('src/checkstyle'))
369-
toolVersion = project.hasProperty('checkstyleVersion') ? project.checkstyleVersion : '10.7.0'
368+
toolVersion = project.hasProperty('checkstyleVersion') ? project.checkstyleVersion : '10.8.0'
370369
}
371370

372371
jar {

gradle/wrapper/gradle-wrapper.jar

34 Bytes
Binary file not shown.
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
3+
distributionSha256Sum=ff7bf6a86f09b9b2c40bb8f48b25fc19cf2b2664fd1d220cd7ab833ec758d0d7
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
45
networkTimeout=10000
56
zipStoreBase=GRADLE_USER_HOME
67
zipStorePath=wrapper/dists
7-
distributionSha256Sum=7ba68c54029790ab444b39d7e293d3236b2632631fb5f2e012bb28b4ff669e4b

gradlew

+2-2
Original file line numberDiff line numberDiff line change
@@ -144,15 +144,15 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
144144
case $MAX_FD in #(
145145
max*)
146146
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
147-
# shellcheck disable=SC3045
147+
# shellcheck disable=SC3045
148148
MAX_FD=$( ulimit -H -n ) ||
149149
warn "Could not query maximum file descriptor limit"
150150
esac
151151
case $MAX_FD in #(
152152
'' | soft) :;; #(
153153
*)
154154
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
155-
# shellcheck disable=SC3045
155+
# shellcheck disable=SC3045
156156
ulimit -n "$MAX_FD" ||
157157
warn "Could not set maximum file descriptor limit to $MAX_FD"
158158
esac

0 commit comments

Comments
 (0)