From 35441f57b0cf08c67fa947ac0184d5a207385d2a Mon Sep 17 00:00:00 2001 From: James Daugherty Date: Mon, 4 Nov 2024 13:54:40 -0500 Subject: [PATCH] build - fix version check --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index d8442b53..02ef875d 100644 --- a/build.gradle +++ b/build.gradle @@ -27,7 +27,7 @@ def pluginProjects = ['spring-security-rest', 'spring-security-rest-memcached', def profileProjects = ['spring-security-rest-testapp-profile'] def publishedProjects = pluginProjects + profileProjects -if (!version.endsWith('SNAPSHOT')) { +if (!projectVersion.endsWith('SNAPSHOT')) { nexusPublishing { String nexusUser = findProperty('sonatypeUsername') String nexusPass = findProperty('sonatypePassword')