Skip to content

Commit 7faf6ba

Browse files
committed
build: remove snapshot inclusion
Signed-off-by: Brandon McAnsh <[email protected]>
1 parent 5e52593 commit 7faf6ba

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

buildSrc/src/main/java/Dependencies.kt

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,29 +16,19 @@ sealed class Packaging(
1616
majorVersion: Int,
1717
minorVersion: Int,
1818
patchVersion: Int,
19-
postFix: String,
2019
) {
21-
val versionName = "$majorVersion.$minorVersion.$patchVersion".let {
22-
if (postFix.isNotEmpty()) {
23-
"$it-$postFix"
24-
} else {
25-
it
26-
}
27-
}
20+
val versionName = "$majorVersion.$minorVersion.$patchVersion"
2821

2922
object Code: Packaging(
3023
majorVersion = 2,
3124
minorVersion = 1,
3225
patchVersion = 14,
33-
postFix = ""
3426
)
3527

3628
object Flipchat: Packaging(
3729
majorVersion = 1,
3830
minorVersion = 0,
3931
patchVersion = 6,
40-
postFix = "SNAPSHOT"
41-
4232
)
4333
}
4434

0 commit comments

Comments
 (0)