Skip to content

⬆️ Bump Gradle Wrapper from 8.11.1 to 8.12.1 #786

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public abstract class CheckSampleReferences : DefaultTask() {
public abstract val extractedSamplesDirectory: DirectoryProperty

@TaskAction
private fun execute() {
internal fun execute() {
val samplesDirectory: Directory = this.extractedSamplesDirectory.get()
this.sourceDirectory.asFileTree.asSequence()
.filterNotNull()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public abstract class CheckSampleSources : DefaultTask() {
public abstract val sourceDirectory: DirectoryProperty

@TaskAction
private fun execute(): Unit = this.sourceDirectory.asFileTree.asSequence()
internal fun execute(): Unit = this.sourceDirectory.asFileTree.asSequence()
.filterNotNull()
.mapNotNull(SampleSourceFile.Companion::orNull)
.forEach(SampleSourceFile::checkSingleClass)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public abstract class ExtractSamples : DefaultTask() {
public abstract val outputDirectory: DirectoryProperty

@TaskAction
private fun execute() {
internal fun execute() {
val directory: Directory = this.outputDirectory.get()
this.sourceDirectory.asFileTree.asSequence()
.filterNotNull()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public abstract class InlineSamples : DefaultTask() {
public abstract val extractedSamplesDirectory: DirectoryProperty

@TaskAction
private fun execute(): Unit = this.sourceDirectory.asFileTree.asSequence()
internal fun execute(): Unit = this.sourceDirectory.asFileTree.asSequence()
.filterNotNull()
.filter { "Main/" in it.path || "main/" in it.path }
.filter { it.name.endsWith(".kt") }
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=f397b287023acdba1e9f6fc5ea72d22dd63669d59ed4a289a29b1a76eee151c6
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
distributionSha256Sum=8d97a97984f6cbd2b85fe4c60a743440a347544bf18818048e611f5288d46c94
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 1 addition & 2 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down
Loading