I've copied the following into my pom.xml:
<plugin>
<groupId>external.atlassian.jgitflow</groupId>
<artifactId>jgitflow-maven-plugin</artifactId>
<version>1.0-m5.1</version>
<configuration>
<noDeploy>true</noDeploy>
<flowInitContext>
<developBranchName>development</developBranchName>
</flowInitContext>
</configuration>
</plugin>
When I run: mvn jgitflow:release-start
I get the following error:
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] The plugin 'org.apache.maven.plugins:maven-jgitflow-plugin' does not exist or no valid version could be found
Any suggestions on how to fix this? Thank you :)