We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b354a5 commit 4120a5dCopy full SHA for 4120a5d
build.gradle
@@ -180,7 +180,7 @@ subprojects {
180
tagTemplate = 'v${version}'
181
versionPatterns = [
182
// increments the minor version: "1.0.0-SNAPSHOT" => "1.1.0-SNAPSHOT"
183
- /(\d+)\.\d+([^\d]*$)/: { Matcher m, Project p -> m.replaceAll("${(m[0][1] as int) + 1}.0${m[0][2]}") }
+ /(\d+)\.\d+(([^\d\.].*)?$)/: { Matcher m, Project p -> m.replaceAll("${(m[0][1] as int) + 1}.0${m[0][2]}") }
184
]
185
git {
186
requireBranch = '^(master|\\d+\\.\\d+\\.x)$'
0 commit comments