Skip to content

Commit

Permalink
build - fix version check
Browse files Browse the repository at this point in the history
  • Loading branch information
jdaugherty committed Nov 4, 2024
1 parent c8692da commit 35441f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 35441f5

Please sign in to comment.