Skip to content

Commit

Permalink
stop generation of versions.properties
Browse files Browse the repository at this point in the history
No matter what refreshVersions always generates this file with a latest Kotlin version that screws the build up. Apparently there's no way to disable it:

Splitties/refreshVersions#640

So we just put it into the build folder and ignore it
  • Loading branch information
mikescamell committed Aug 23, 2024
1 parent ebd9eaf commit 3068997
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ plugins {
id("de.fayard.refreshVersions") version "0.51.0"
}

refreshVersions {
file("build/tmp/refreshVersions").mkdirs()
versionsPropertiesFile = file("build/tmp/refreshVersions/versions.properties")
}

rootDir.eachFile(groovy.io.FileType.DIRECTORIES) { File parent ->

String[] ignoreFolders = ["buildSrc", "fastlane", "submodules", "node_modules", "gradle", "build", ".maestro"]
Expand Down

0 comments on commit 3068997

Please sign in to comment.