Questions tagged [jgitflow-maven-plugin]

53 questions
0
votes
0 answers

How to fix an UnknownHostKey error when using the Maven jgitflow plugin?

I have many maven projects thata re hosted on Bitbucket and use the jgitflow maven plugin. external.atlassian.jgitflow jgitflow-maven-plugin 1.0-m5.1
Iceman76
  • 101
  • 4
0
votes
1 answer

Jgitflow maven plugin fails to execute

I am experimenting to use gitflow strategy for my project and for that I choose to use maven jgitflow plugin for release preparation. When I execute the "mvn jgitflow:release-start" command, the build immediately fails with below error. I am using…
0
votes
1 answer

I get "Please tell me who you are..." error while running gitflow command with ssh-agent defined in Jenkinsfile

I get the following error while running gitflow command, e.g. gitflow:release-start with ssh-agent defined as follows in Jenkinsfile node { sshagent (credentials: ['deploy-dev']) { sh 'mvn gitflow:release-start' } } [ERROR] Failed to…
m19v
  • 1,800
  • 4
  • 11
  • 26
0
votes
1 answer

How can I debug a third party mvn plugin during goal execution?

I am using the following plugin in my code: external.atlassian.jgitflow jgitflow-maven-plugin 1.0-m5.1
KennyBartMan
  • 940
  • 9
  • 21
0
votes
1 answer

What's the right maven command for releasing from release branch to master with gitflow-maven-plugin?

I'm testing versioning in IntelliJ with gitflow-maven-plugin, I wanted to update major and minor manually: mvn -B gitflow:release-start -DcommitDevelopmentVersionAtStart=true -DversionDigitToIncrement=0 After this command, a new release branch…
wawawa
  • 2,835
  • 6
  • 44
  • 105
0
votes
1 answer

How can I change 'MAJOR' AND 'MINOR' with gitflow-maven-plugin

I'm currently learning Maven and I've been doing some testing with gitflow-maven-plugin, I have set up and get it work, now it can change the last digit of the versioning (so if the release version for master branch is 1.0.0, develop version is…
0
votes
1 answer

JGitflow triggers concourse job infinitely

I'm using JGitFlow with Concourse. I have two branches - master and develop. My job is triggered when there is a change to develop. When the job is run, it executes mvn -X --batch-mode jgitflow:release-start jgitflow:release-finish The issue is…
0
votes
1 answer

PackProtocolException: invalid advertisement when using the jgitflow-maven-plugin withing a jenkins job

I am using the following jgitflow-maven-plugin(created and no longer maintained) by the Atlassian team. Whenever I try to execute a release-start from within a Jenkins job I get the following error: Caused by:…
LoolKovsky
  • 1,018
  • 1
  • 12
  • 29
0
votes
1 answer

Issue with parametrising feature builds by amending POM

We are working on mule application, and recently we have been instructed to follow PURE Scrum i.e.git-flow model of branching and development. Below are the steps we need to follow: 1. For each development task (with assigned JIRA ID ex: JIRA-1234)…
Sambit Swain
  • 131
  • 1
  • 13
0
votes
1 answer

Unable to deploy artifact to nexus on jgitflow:release-finish from bamboo

I am setting up the jgitflow release tasks on bamboo for the first time. We have the nexus url defined in the parent pom and the below jgitflow configuration for a project inherited from it as below
0
votes
0 answers

activate a profile which is in a different pom when building from the project parent pom

I am having a challenge where by i want to activate a profile which is in a different pom file and it is not added as a module on the project, but in this instance i want to activate it along with my parent pom which will build the entire project
Tebogo
  • 11
  • 1
0
votes
1 answer

Need Example of JGit to push code files to git server

I am trying to push the selenium scripts to git server so that jenkins will automatically download the latest scripts. I wanted to give web interface to select the automation scripts and upload the same scripts in Git. I want to programatically…
0
votes
1 answer

Git flow- Need to create feature branch off of another branch

I am using Git flow and I started out with a develop branch, master branch. Later, created a feature branch branching off of develop and when the functionality was complete, I merged it back to develop. Next time, Instead of creating a new feature…
Azmeena
  • 29
  • 3
  • 5
0
votes
0 answers

Jenkins pipeline - undo a jgitflow release on fail

I am following Git flow: How to configure a one-click release process in Jenkins? to implement release process with Jenkins pipeline. However I am not sure what should I do to reset develop branch if something will fail. This is a part on my…
0
votes
1 answer

JGitflow tasks disappear after creating hotfix branch

I'm having an issue where I am able to initialize JGitflow and create a hotfix branch, however when I am on that branch, the JGitflow tasks disappear! If I try and 'publish' or 'finish' a branch I am told that the command is not available. If I…
HaDoMin
  • 171
  • 4
  • 12