You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by ka...@apache.org on 2010/05/20 09:13:13 UTC

svn commit: r946545 - /incubator/shiro/trunk/pom.xml

Author: kaosko
Date: Thu May 20 07:13:12 2010
New Revision: 946545

URL: http://svn.apache.org/viewvc?rev=946545&view=rev
Log:
Must specify forked-path for release plugin configuration to make it possible to enter GPG passphrase interactively. Release dry run now succeeds! The current configuration will try to deploy site as part of perform which was disabled in the apache parent pom release plugin configuration but if that causes problems, will deal with that at release time.

Modified:
    incubator/shiro/trunk/pom.xml

Modified: incubator/shiro/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/shiro/trunk/pom.xml?rev=946545&r1=946544&r2=946545&view=diff
==============================================================================
--- incubator/shiro/trunk/pom.xml (original)
+++ incubator/shiro/trunk/pom.xml Thu May 20 07:13:12 2010
@@ -146,13 +146,14 @@
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-release-plugin</artifactId>
                 <configuration>
-										<!-- "install" needed	because	we have interrelated dependencies between the modules and we are releasing them all the same - especially consider shiro-all -->
-										<preparationGoals>clean	install</preparationGoals>
+                    <!-- "install" needed because we have interrelated dependencies between the modules and we are releasing them all the same - especially consider shiro-all -->
+                    <preparationGoals>clean install</preparationGoals>
                     <autoVersionSubmodules>true</autoVersionSubmodules>
                     <!-- This configuration copied from apache:apache:7 parent pom -->
-										<useReleaseProfile>false</useReleaseProfile>
-										<goals>deploy site-deploy</goals>
-										<arguments>-Papache-release</arguments>
+                    <useReleaseProfile>false</useReleaseProfile>
+                    <goals>deploy site-deploy</goals>
+                    <arguments>-Papache-release</arguments>
+                    <mavenExecutorId>forked-path</mavenExecutorId>
                 </configuration>
             </plugin>
         </plugins>