[
http://jira.codehaus.org/browse/SCM-580?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=243507#action_243507
]
H.-C. Gürsoy commented on SCM-580:
----------------------------------
Dear Lee,
it's sad but true: it's a maven "feature" ;-)
I've fighted myself with this "feature", see these issues:
http://jira.codehaus.org/browse/MNG-3425
http://jira.codehaus.org/browse/MNG-3401
and
http://jira.codehaus.org/browse/MSQL-65 (the last one is exactly the same
usecase).
Best regards
Halil
> Maven SCM plugin configuration ignored if executions are used.
> --------------------------------------------------------------
>
> Key: SCM-580
> URL: http://jira.codehaus.org/browse/SCM-580
> Project: Maven SCM
> Issue Type: Bug
> Affects Versions: 1.4
> Environment: Windows
> Reporter: Lee Fox
>
> 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>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira