summaryrefslogtreecommitdiff
path: root/settings.gradle.kts
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@gmail.com>2023-07-03 17:49:44 +0200
committerJoffrey Bion <joffrey.bion@gmail.com>2023-07-05 15:59:53 +0200
commit6aa87c066cd0a87269df346d6770453997bd67ab (patch)
tree7bcc9a3446376230a9144bce0db06652979271d5 /settings.gradle.kts
parentFormat libs.versions.toml (diff)
downloadseven-wonders-6aa87c066cd0a87269df346d6770453997bd67ab.tar.gz
seven-wonders-6aa87c066cd0a87269df346d6770453997bd67ab.tar.bz2
seven-wonders-6aa87c066cd0a87269df346d6770453997bd67ab.zip
Prevent the creation of empty versions.properties files
Diffstat (limited to 'settings.gradle.kts')
-rw-r--r--settings.gradle.kts1
1 files changed, 1 insertions, 0 deletions
diff --git a/settings.gradle.kts b/settings.gradle.kts
index 2622429c..e6e6e4e2 100644
--- a/settings.gradle.kts
+++ b/settings.gradle.kts
@@ -51,6 +51,7 @@ fun BuildScanExtension.addGithubActionsData() {
}
refreshVersions {
+ versionsPropertiesFile = file("build/tmp/refreshVersions/versions.properties").apply { parentFile.mkdirs() }
rejectVersionIf {
candidate.stabilityLevel != StabilityLevel.Stable || "-alpha" in candidate.value || "-beta" in candidate.value
}
bgstack15