Skip to content

Commit 161e11b

Browse files
committed
chore: gradle 9.0 upgrade
1 parent e6a1041 commit 161e11b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx2g
33
org.gradle.parallel=true
44
org.gradle.caching=true
55
org.gradle.configureondemand=true
6-
org.gradle.configuration-cache=false
6+
org.gradle.configuration-cache=true
77
org.gradle.configuration-cache.problems=warn
88
org.gradle.kotlin.dsl.allWarningsAsErrors=true
99
org.gradle.unsafe.isolated-projects=false

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ kotlin-jvmtarget = "21"
66
kotlin-dsl-jvmtarget = "21"
77
kotlin-api-version = "2.2"
88
kotlin-lang-version = "2.2"
9-
gradle = "8.14.1"
9+
gradle = "9.0.0-milestone-9"
1010
java-vendor = "Oracle"
1111
java-jvmargs = "--enable-preview"
1212
java-addmodules = "jdk.incubator.vector"
@@ -101,7 +101,7 @@ mockk = "1.14.2"
101101
mokkery = "2.8.0"
102102
wiremock = "4.0.0-beta.9"
103103
wiremock-kotlin = "2.1.1"
104-
okhttp = "5.0.0-alpha.15"
104+
okhttp = "5.0.0-alpha.16"
105105
slf4j = "2.1.0-alpha1"
106106
logback = "1.5.18"
107107
logback-tyler = "1.0.2"

gradle/wrapper/gradle-wrapper.jar

1.65 KB
Binary file not shown.

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.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-milestone-9-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#
4-
# Copyright © 2015-2021 the original authors.
4+
# Copyright © 2015 the original authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

plugins/project/src/main/kotlin/common/ProjectExtns.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ fun KotlinSourceSet.ksp(dependencyNotation: Any) {
599599
}
600600

601601
/** Returns the path of the dependency jar in the runtime classpath. */
602-
fun Project.depPathOf(dep: ExternalDependency): Provider<String?> =
602+
fun Project.depPathOf(dep: ExternalDependency): Provider<String> =
603603
configurations
604604
.named("runtimeClasspath")
605605
.flatMap { it.incoming.artifacts.resolvedArtifacts }

0 commit comments

Comments
 (0)