I have an end to end build project, pulling code from Stash, building using Jenkins and deploying to Nexus.
I've been looking at the the atlassian maven jgitflow plugin, and I've been stuggling to find some exmaples of usage.
How would I use this in a build process using Jenkins?
Does this plugin create a tag in stash?
I've been able to get the plugin to work by adding more configuration to the pom file.
more questions:
Does the ssh connection to the repo allow a push, it seems like it doesn't.
I use a profile in the pom to specify the snapshot and release respositories, and credentials are stored in a maven settings file.
When I use mvn clean deploy, this profile is picked up ok. when I use the gitflow goals, the profile is not picked up
"[WARNING] The requested profile "nexus-publish" could not be activated because it does not exist."
mvn -Pnexus-publish jgitflow:release-finish -f org.springframework.config.java.samples.petclinic/pom-nexustest-gitflow.xml -s /bldtools/maven_settings/alm_e2e_demo_nexusprod.xml
Hi,
I also use the JGitflow plugin now for the release process of Marvelution projects. And also hit this "issue" where my custom release profile was not being activated.
I found the using the activation trigger -DperformRelease=true fixed it. This property is being set in the release-finish release build phase.
I used to use mvn jgitflow:release-finish -Prelease and now use mvn jgitflow:release-finish
The following activation for the release profile in my settings xml (but profiles in pom.xml also work) will enable the profile in the release build phase of the plugin:
<profile> <id>release</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> ... </profile>
Do you use ssh access to the git repository? I though that ssh access only gave read access, can this also push updates back to stash?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes I use ssh to connect to GIT but its on Bitbucket and not Stash, but don't think that is an issue. You do need to specify the git origin and I have the SSH Keys in my home directory.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.