I'm trying to run mvn
jgitflow:release-finish but I keep getting the following error:
Failed to deploy artifacts/metadata: No connector available to access repository
My remote repo is in bitbucket and I use SSH to perform commits, fetchs etc. I'm using Maven 3, by the way...
I have included the following in my pom, with no success:
<distributionManagement>
<repository>
<id>bitbucket</id>
</repository>
</distributionManagement>
<pluginRepositories>
<pluginRepository>
<id>synergian-repo</id>
</pluginRepository>
</pluginRepositories>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>2.4</version>
</extension>
</extensions>
</build>