Skip to content

Commit 20bd8a3

Browse files
committed
chore: dep updates
1 parent daa65fd commit 20bd8a3

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

gradle/build-logic/common-plugins/src/main/kotlin/tasks/SampleTask.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@ import org.gradle.api.*
44
import org.gradle.api.file.*
55
import org.gradle.api.provider.*
66
import org.gradle.api.tasks.*
7+
import org.gradle.api.tasks.options.Option
78

89
@CacheableTask
910
abstract class SampleTask : DefaultTask() {
1011

11-
@get:Input abstract val greeting: Property<String>
12+
@get:Input
13+
@get:Option(option = "greeting", description = "Greetings Task Property")
14+
abstract val greeting: Property<String>
1215

1316
@get:[Input Optional]
1417
abstract val versions: MapProperty<String, String>

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ kotlin-jvmtarget = "20"
66
kotlin-dsl-jvmtarget = "17"
77
kotlin-api-version = "1.9"
88
kotlin-lang-version = "2.0"
9-
gradle = "8.3-rc-1"
9+
gradle = "8.3-rc-2"
1010
node-version = "20.4.0"
1111
java-vendor = "Oracle"
1212
java-jvmArguments = "--enable-preview"
@@ -102,7 +102,7 @@ npm-vega-lite = "5.13.0"
102102
# Plugin versions
103103
benmanes = "0.47.0"
104104
foojay-resolver = "0.6.0"
105-
gradle-enterprise = "3.14"
105+
gradle-enterprise = "3.14.1"
106106
nexus-publish = "2.0.0-rc-1"
107107
shadow = "8.1.1"
108108
spotless = "6.20.0"

gradle/wrapper/gradle-wrapper.jar

346 Bytes
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.3-rc-1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-rc-2-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ done
8383
# This is normally unused
8484
# shellcheck disable=SC2034
8585
APP_BASE_NAME=${0##*/}
86-
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
86+
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87+
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
8788

8889
# Use the maximum available, or set MAX_FD != -1 to use that value.
8990
MAX_FD=maximum

0 commit comments

Comments
 (0)