Skip to content

Commit

Permalink
TECH: Remove snapshot property from the local build (#617)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikitae57 authored Jan 15, 2024
1 parent 05eaf26 commit 3bb161e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ tasks.register("checkLegalDocuments") {
"Legal document doesn't contain module name (${project.name}). Document path: $file"
}

val kaspressoVersion = project.property("kaspresso.snapshotVersion").toString().split("-SNAPSHOT").first()
val kaspressoVersion = project.property("kaspresso.version").toString()
require(firstLine.contains(kaspressoVersion)) {
"Failed to check whether the existing NOTICE.txt was made for the current release ($kaspressoVersion)"
}
Expand Down
3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ kotlin.code.style=official

android.useAndroidX = true

kaspresso.version=1.5.3
kaspresso.snapshotVersion=1.5.3-SNAPSHOT
kaspresso.version=1.5.3

0 comments on commit 3bb161e

Please sign in to comment.