Skip to content

Commit

Permalink
Update dependency gradle to v8.7 (#330)
Browse files Browse the repository at this point in the history
* Update dependency gradle to v8.7

* add new method

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Nelson Osacky <nosacky@gradle.com>
  • Loading branch information
renovate[bot] and runningcode authored Mar 25, 2024
1 parent 1ddd119 commit f4452fa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ configure<DoctorExtension> {
downloadSpeedWarningThreshold.set(2.0f)
daggerThreshold.set(100)
javaHome {
ensureJavaHomeMatches.set(!providers.environmentVariable("CI").isPresent)
ensureJavaHomeMatches.set(false)
ensureJavaHomeIsSet.set(false)
}
}

Expand All @@ -39,7 +40,7 @@ tasks.withType(Test::class.java).configureEach {
}

tasks.wrapper {
gradleVersion = "8.6"
gradleVersion = "8.7"
}

tasks.register("pluginTasks").configure {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,11 @@ internal class SlowerFromCacheCollectorTest {
throw NotImplementedError()
}

override fun getOriginExecutionTime(): Long? {
override fun getOriginBuildCacheKeyBytes(): ByteArray? {
TODO("Not yet implemented")
}

override fun getOriginExecutionTime(): Long {
return originExecutionTime
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit f4452fa

Please sign in to comment.