We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9f40c3 commit 6ca6ed5Copy full SHA for 6ca6ed5
build.gradle
@@ -82,7 +82,8 @@ allprojects {
82
ext.kotlin_version = rootProject.properties['kotlin_snapshot_version']
83
println "Using Kotlin $kotlin_version for project $it"
84
85
- if (version != atomicfu_version) {
+ def skipSnapshotChecks = rootProject.properties['skip_snapshot_checks'] != null
86
+ if (!skipSnapshotChecks && version != atomicfu_version) {
87
throw new IllegalStateException("Current deploy version is $version, but atomicfu version is not overridden ($atomicfu_version) for $it")
88
}
89
0 commit comments