You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@turbine.apache.org by gk...@apache.org on 2014/03/26 17:19:41 UTC

svn commit: r1581908 - /turbine/fulcrum/trunk/json/pom.xml

Author: gk
Date: Wed Mar 26 16:19:41 2014
New Revision: 1581908

URL: http://svn.apache.org/r1581908
Log:
Fix apparent build rot in release process:  site did not exist in the target directory - copied from log4j error site clean before release:prepare.

Modified:
    turbine/fulcrum/trunk/json/pom.xml

Modified: turbine/fulcrum/trunk/json/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/json/pom.xml?rev=1581908&r1=1581907&r2=1581908&view=diff
==============================================================================
--- turbine/fulcrum/trunk/json/pom.xml (original)
+++ turbine/fulcrum/trunk/json/pom.xml Wed Mar 26 16:19:41 2014
@@ -112,6 +112,7 @@
                           <goal>single</goal>
                         </goals>
                         <configuration>
+                          <goals>site:site</goals>
                           <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
                           <descriptors>
                             <descriptor>src/assembly/project.xml</descriptor>
@@ -121,6 +122,17 @@
                       </execution>
                     </executions>
                   </plugin>  
+                  <plugin>
+                    <artifactId>maven-site-plugin</artifactId>
+                    <executions>
+                        <execution>
+                          <phase>package</phase>		
+                            <goals>
+                                <goal>site</goal>
+                            </goals>
+                        </execution>
+                    </executions>
+                  </plugin>
                 </plugins>
             </build>
         </profile>