We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 228f397 commit c21dbcdCopy full SHA for c21dbcd
build.gradle.kts
@@ -9,6 +9,9 @@ plugins {
9
alias(libs.plugins.maven.publish)
10
}
11
12
+val isSnapshot: Boolean get() = System.getProperty("snapshot") != null
13
+version = "$version${if (isSnapshot) "-SNAPSHOT" else ""}"
14
+
15
dependencies {
16
api(libs.configcat)
17
api(libs.openfeature)
0 commit comments