You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Oscar Picasso <os...@gmail.com> on 2013/06/18 18:12:46 UTC

Pushing changes after release with scm provider

Hi,

We are using Jazz RTC as our source control system.
The RTC remote repository workspace is configured with a flow target stream.

However when doing a maven release the changeset are not delivered to the
target stream and the snapshot is not promoted to the target stream.

Here is our configuration:
       <plugin>
          <artifactId>maven-release-plugin</artifactId>
          <version>2.4.1</version>
          <dependencies>
            <dependency>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-scm-plugin</artifactId>
              <version>1.8.1</version>
            </dependency>
          </dependencies>
          <inherited>false</inherited>
          <configuration>
            <preparationGoals>clean install</preparationGoals>
            <pushChanges>true</pushChanges>
            <goals>deploy site-deploy</goals>
          </configuration>
        </plugin>

Any idea?