chrisbanes/gradle-mvn-push

build SNAPSHOT version ,Is the logic wrong?

zhangwenhao2013 opened this issue · 1 comments

def isReleaseBuild() { return VERSION_NAME.contains("SNAPSHOT") == false }

def isReleaseBuild() { return VERSION_NAME.contains("SNAPSHOT") }

No. If the version name has a "SNAPSHOT" suffix it is, by definition, not a "release" build.
def isReleaseBuild() { return VERSION_NAME.contains("SNAPSHOT") == false }
determines whether SNAPSHOT is absent from the version name. The logic is correct.