Skip to content

Commit

Permalink
Update axion to 1.17.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sjrd218 committed Nov 22, 2024
1 parent 55cd29f commit b9478c1
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}

plugins {
id 'pl.allegro.tech.build.axion-release' version '1.13.4'
id 'pl.allegro.tech.build.axion-release' version '1.17.2'
}
defaultTasks 'clean','build'
apply plugin: 'java'
Expand All @@ -25,18 +25,10 @@ ext.rundeckVersion='4.17.6-20240402'
ext.pluginClassNames='org.rundeck.plugins.S3LogFileStoragePlugin'

scmVersion {
ignoreUncommittedChanges = true
tag {
prefix = 'v'
versionSeparator = ''
def origDeserialize=deserialize
//apend .0 to satisfy semver if the tag version is only X.Y
deserialize = { config, position, tagName ->
def orig = origDeserialize(config, position, tagName)
if (orig.split('\\.').length < 3) {
orig += ".0"
}
orig
}
}
}
project.version = scmVersion.version
Expand Down

0 comments on commit b9478c1

Please sign in to comment.