You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2013/05/05 12:18:30 UTC

svn commit: r1479275 - in /webservices/axiom/trunk: apidocs/pom.xml code-coverage/pom.xml devguide/pom.xml userguide/pom.xml

Author: veithen
Date: Sun May  5 10:18:30 2013
New Revision: 1479275

URL: http://svn.apache.org/r1479275
Log:
Fixed mvn site:stage. See http://veithen.blogspot.be/2013/05/maven-patterns-skipping-site-generation.html for more details.

Modified:
    webservices/axiom/trunk/apidocs/pom.xml
    webservices/axiom/trunk/code-coverage/pom.xml
    webservices/axiom/trunk/devguide/pom.xml
    webservices/axiom/trunk/userguide/pom.xml

Modified: webservices/axiom/trunk/apidocs/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/apidocs/pom.xml?rev=1479275&r1=1479274&r2=1479275&view=diff
==============================================================================
--- webservices/axiom/trunk/apidocs/pom.xml (original)
+++ webservices/axiom/trunk/apidocs/pom.xml Sun May  5 10:18:30 2013
@@ -150,9 +150,18 @@
             </plugin>
             <plugin>
                 <artifactId>maven-site-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
+                <executions>
+                    <execution>
+                        <id>default-site</id>
+                        <phase>site</phase>
+                        <goals>
+                            <goal>site</goal>
+                        </goals>
+                        <configuration>
+                            <skip>true</skip>
+                        </configuration>
+                    </execution>
+                </executions>
             </plugin>
         </plugins>
     </build>

Modified: webservices/axiom/trunk/code-coverage/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/code-coverage/pom.xml?rev=1479275&r1=1479274&r2=1479275&view=diff
==============================================================================
--- webservices/axiom/trunk/code-coverage/pom.xml (original)
+++ webservices/axiom/trunk/code-coverage/pom.xml Sun May  5 10:18:30 2013
@@ -263,9 +263,18 @@
             </plugin>
             <plugin>
                 <artifactId>maven-site-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
+                <executions>
+                    <execution>
+                        <id>default-site</id>
+                        <phase>site</phase>
+                        <goals>
+                            <goal>site</goal>
+                        </goals>
+                        <configuration>
+                            <skip>true</skip>
+                        </configuration>
+                    </execution>
+                </executions>
             </plugin>
         </plugins>
     </build>

Modified: webservices/axiom/trunk/devguide/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/devguide/pom.xml?rev=1479275&r1=1479274&r2=1479275&view=diff
==============================================================================
--- webservices/axiom/trunk/devguide/pom.xml (original)
+++ webservices/axiom/trunk/devguide/pom.xml Sun May  5 10:18:30 2013
@@ -108,9 +108,18 @@
             </plugin>
             <plugin>
                 <artifactId>maven-site-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
+                <executions>
+                    <execution>
+                        <id>default-site</id>
+                        <phase>site</phase>
+                        <goals>
+                            <goal>site</goal>
+                        </goals>
+                        <configuration>
+                            <skip>true</skip>
+                        </configuration>
+                    </execution>
+                </executions>
             </plugin>
         </plugins>
     </build>

Modified: webservices/axiom/trunk/userguide/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/userguide/pom.xml?rev=1479275&r1=1479274&r2=1479275&view=diff
==============================================================================
--- webservices/axiom/trunk/userguide/pom.xml (original)
+++ webservices/axiom/trunk/userguide/pom.xml Sun May  5 10:18:30 2013
@@ -108,9 +108,18 @@
             </plugin>
             <plugin>
                 <artifactId>maven-site-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
+                <executions>
+                    <execution>
+                        <id>default-site</id>
+                        <phase>site</phase>
+                        <goals>
+                            <goal>site</goal>
+                        </goals>
+                        <configuration>
+                            <skip>true</skip>
+                        </configuration>
+                    </execution>
+                </executions>
             </plugin>
         </plugins>
     </build>