Skip to content

Commit b7aea1e

Browse files
authored
Update to Gradle 8.12
1 parent b48f3b4 commit b7aea1e

5 files changed

Lines changed: 11 additions & 5 deletions

File tree

buildSrc/src/main/groovy/CloneTask.groovy

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import java.time.Duration
12
import javax.inject.Inject
23
import org.gradle.api.DefaultTask
34
import org.gradle.api.tasks.Input
@@ -35,7 +36,7 @@ abstract class CloneTask extends DefaultTask {
3536
executable 'git'
3637
args = ['pull', '-q']
3738
ignoreExitValue = true
38-
timeout = 6000
39+
timeout = Duration.ofMinutes(1)
3940
}
4041
} else {
4142
try {
@@ -71,7 +72,7 @@ abstract class CloneTask extends DefaultTask {
7172
]
7273
args += extraArgs
7374
ignoreExitValue = ignoreError
74-
timeout = 6000
75+
timeout = Duration.ofMinutes(1)
7576
}
7677
}
7778
}

gradle/wrapper/gradle-wrapper.jar

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

gradlew

Lines changed: 5 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)