Skip to content

Commit 96a14c1

Browse files
committed
Upgrade to Gradle 8.4
1 parent 78f517f commit 96a14c1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

buildSrc/src/main/kotlin/CollectScreenShots.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ object ScreenshotsHelper {
115115
): CollectScreenshotsTask {
116116
val task = project.tasks.register<CollectScreenshotsTask>("collectScreenshots").get()
117117
task.outputDir.set(project.file(project.projectDir.toString() + "/images"))
118-
task.inputDir.set(File(project.buildDir, "classes/kotlin/${sourceSet.name}"))
118+
task.inputDir.set(File(project.layout.buildDirectory.get().asFile, "classes/kotlin/${sourceSet.name}"))
119119
task.runtimeDependencies.set(sourceSet.runtimeClasspath)
120120
task.config()
121121
task.dependsOn(sourceSet.output)

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

0 commit comments

Comments
 (0)