Reputation: 51
The customer for the current project I'm working on uses Bamboo for building. I'm new to Bamboo. I'm creating a build plan for a Java/maven project. I want the build to add a tag to the git branch, which combines the version number from pom.xml
(e.g. 1.0.1) and the Bamboo build numbe (e.g 53). The example would create a tag 1.0.1.53.
The build number is easy, it just the ${bamboo.buildNumber}
variable, but how can I construct the tag using the pom.xml
?
Upvotes: 0
Views: 473