Skip to content

Commit adba8f2

Browse files
chore(deps): update gradle to v9 (#42)
* chore(deps): update gradle to v9 * Update task call --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: theEvilReaper <theEvilReaper@users.noreply.github.com>
1 parent 9fd6053 commit adba8f2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ subprojects {
88
options.encoding = "UTF-8"
99
}
1010
getByName<JacocoReport>("jacocoTestReport") {
11-
dependsOn(project.tasks.findByPath("test"))
11+
dependsOn(project.tasks.named("test"))
1212
reports {
1313
xml.required.set(true)
1414
}
1515
}
1616
getByName<Test>("test") {
17-
finalizedBy(project.tasks.findByPath("jacocoTestReport"))
17+
finalizedBy(project.tasks.named("jacocoTestReport"))
1818
useJUnitPlatform()
1919
testLogging {
2020
events("passed", "skipped", "failed")

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)