Open
Description
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:
...
<repositories>
<repository>
<id>snapshots</id>
<url>http://nexus/repository/snapshots/</url>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
</repository>
<repository>
<id>stage</id>
<url>http://nexus/repository/stage/</url>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
</repository>
<repository>
<id>releases</id>
<url>http://nexus/repository/releases/</url>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>com.e-gineering</groupId>
<artifactId>gitflow-helper-maven-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<releaseDeploymentRepository>releases</releaseDeploymentRepository>
<stageDeploymentRepository>stage</stageDeploymentRepository>
<snapshotDeploymentRepository>snapshots</snapshotDeploymentRepository>
</configuration>
<extensions>true</extensions>
<executions>
<execution>
<goals>
<goal>enforce-versions</goal>
<goal>retarget-deploy</goal>
<goal>tag-master</goal>
<goal>promote-master</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
...
Metadata
Metadata
Assignees
Labels
No labels