gitflow-helper-maven-plugin icon indicating copy to clipboard operation
gitflow-helper-maven-plugin copied to clipboard

An extension and plugin that teaches Maven to work well with gitflow projects and CI servers.

Results 16 gitflow-helper-maven-plugin issues
Sort by recently updated
recently updated
newest added

Fixed a number of issues related to the OtherBranchVersionExtension, found when a project using gitflow-helper-maven-plugin is loaded into IntelliJ: 1) Added a condition to *not* activate the OtherBranchVersionExtension, when the...

When you have a project that uses a maven plugin that rewrites the POM file (such as the flatten-maven-plugin) in combination with the gitflow-helper-maven-plugin, you'll notice that the rewritten POM...

Extended the MasterPromoteExtension to not only retain the hardcoded gitflow-helper-maven-plugin itself and the maven-deploy-plugin, or the plugins related to explicit supplied command-line goals, but also allow a project to configure...

When a branch matches `otherDeploymentBranchPattern`, the normalized branch name will be appended to the POM version. Under the hood, the plugin uses `project.setVersion()` to set the version. It does not...

I have error `No Repository with id stage is defined.` with plugin v3.0.0, but this error don't reproduce in plugin v2.2.0. my pom.xml: ``` ... snapshots http://nexus/repository/snapshots/ true false stage...

The EnforceVersionsMojo currently provides no/insufficient support for the POM's DependencyManagement section. This leads to (at least) two different issues with this plugin that still allow projects/modules to depend on SNAPSHOT...

In multi-module projects (ear with ejb/jar/war inside) we only want to upload the ear as it includes all the other modules. We use skip=true with maven-deploy-plugin in the modules that...

The following code of the retarget-deploy mojo can cause problems on some filesystems. By injecting the entire name into the `otherDeployBranchPattern` artifacts, it can create very very long directories and...

Hi @bvarner, this PR offers a test for issue #105. I've added a sample multi-module project in `src/test/resources/multi-module-project-stub`. It's just a parent POM with a single module. It is expected...

We were using `gitBranchExpression` to provide the git branch name via environment variables, intending to override the git branch name as can be detected via the git metadata on the...