Skip to content

Commit 3068997

Browse files
committed
stop generation of versions.properties
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
1 parent ebd9eaf commit 3068997

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

settings.gradle

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ plugins {
1010
id("de.fayard.refreshVersions") version "0.51.0"
1111
}
1212

13+
refreshVersions {
14+
file("build/tmp/refreshVersions").mkdirs()
15+
versionsPropertiesFile = file("build/tmp/refreshVersions/versions.properties")
16+
}
17+
1318
rootDir.eachFile(groovy.io.FileType.DIRECTORIES) { File parent ->
1419

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

0 commit comments

Comments
 (0)