I'm using the gradle-release-plugin successfully in jenkins with the option gradle.release.useAutomaticVersion=true; however, it is incrementing the incremental and i'd like to increment the minor....
1.14.0 want to increment to 1.15.0, rather than 1.14.1
is there a way to do this?
You can configure how the increment should work.
I think this should do the trick. It should match your current version via the regex pattern
And writes the new version by
where the second group is incremented by 1
Didn't tested the code