Uploaded image for project: 'Maven SCM'
  1. Maven SCM
  2. SCM-580

Maven SCM plugin configuration ignored if executions are used.

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Not A Problem
    • 1.4
    • None
    • maven-plugin
    • None
    • Windows

    Description

      When utilizing the embedded configuration tag, everything is perfect. However, once I try to use executions, the plugin fails to recognize the settings specified in within the execution tag. Here is the portion of my pom file that doesn't work:

      		<profile>
                  <id>bootstrap-all</id>
                  <activation>
                      <activeByDefault>true</activeByDefault>
                  </activation>
      			<build>
      				<plugins>
      					<plugin>
      						<groupId>org.apache.maven.plugins</groupId>
      						<artifactId>maven-scm-plugin</artifactId>
      						<version>1.4</version>
      						<configuration>
      							<skipCheckoutIfExists/>
      						</configuration>
      						<executions>
      							<execution>
      								<id>checkout_a</id>
      								<configuration>
      									<connectionUrl>scm:svn:https://svnserver/svn/prod/java/aws-core-webutils/trunk/</connectionUrl>
      									<checkoutDirectory>${basedir}..\aws-core-webutils</checkoutDirectory>
      								</configuration>
      								<phase>process-resources</phase>
      								<goals>
      									<goal>checkout</goal>
      								</goals>
      							</execution>
      						</executions>
      					</plugin>		
      				</plugins>
      			</build>
      		</profile>
      

      However, this does work:

      		<profile>
                  <id>bootstrap-all</id>
                  <activation>
                      <activeByDefault>true</activeByDefault>
                  </activation>
      			<build>
      				<plugins>
      					<plugin>
      						<groupId>org.apache.maven.plugins</groupId>
      						<artifactId>maven-scm-plugin</artifactId>
      						<version>1.4</version>
      						<configuration>
      							<skipCheckoutIfExists/>
      							<connectionUrl>scm:svn:https://svnserver/svn/prod/java/aws-core-webutils/trunk/</connectionUrl>
      							<checkoutDirectory>${basedir}\..\aws-core-webutils</checkoutDirectory>
      						</configuration>
      					</plugin>		
      				</plugins>
      			</build>
      		</profile>
      

      Attachments

        Activity

          People

            rfscholte Robert Scholte
            xanxir12 Lee Fox
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: