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 2015/08/16 23:59:37 UTC

svn commit: r1696167 - in /webservices/axiom/trunk: ./ aspects/ axiom-all/ axiom-api/ axiom-c14n/ axiom-compat/ axiom-jaxb/ buildutils/ distribution/ implementations/ samples/ systests/ testing/

Author: veithen
Date: Sun Aug 16 21:59:36 2015
New Revision: 1696167

URL: http://svn.apache.org/r1696167
Log:
Simplify the site configuration.

Modified:
    webservices/axiom/trunk/aspects/pom.xml
    webservices/axiom/trunk/axiom-all/pom.xml
    webservices/axiom/trunk/axiom-api/pom.xml
    webservices/axiom/trunk/axiom-c14n/pom.xml
    webservices/axiom/trunk/axiom-compat/pom.xml
    webservices/axiom/trunk/axiom-jaxb/pom.xml
    webservices/axiom/trunk/buildutils/pom.xml
    webservices/axiom/trunk/distribution/pom.xml
    webservices/axiom/trunk/implementations/pom.xml
    webservices/axiom/trunk/pom.xml
    webservices/axiom/trunk/samples/pom.xml
    webservices/axiom/trunk/systests/pom.xml
    webservices/axiom/trunk/testing/pom.xml

Modified: webservices/axiom/trunk/aspects/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/aspects/pom.xml?rev=1696167&r1=1696166&r2=1696167&view=diff
==============================================================================
--- webservices/axiom/trunk/aspects/pom.xml (original)
+++ webservices/axiom/trunk/aspects/pom.xml Sun Aug 16 21:59:36 2015
@@ -40,6 +40,10 @@
         <module>shared-aspects</module>
     </modules>
 
+    <properties>
+        <skipSite>true</skipSite>
+    </properties>
+
     <build>
         <plugins>
             <plugin>
@@ -83,12 +87,6 @@
                     </instructions>
                 </configuration>
             </plugin>
-            <plugin>
-                <artifactId>maven-site-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
-            </plugin>
         </plugins>
     </build>
 </project>

Modified: webservices/axiom/trunk/axiom-all/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/axiom-all/pom.xml?rev=1696167&r1=1696166&r2=1696167&view=diff
==============================================================================
--- webservices/axiom/trunk/axiom-all/pom.xml (original)
+++ webservices/axiom/trunk/axiom-all/pom.xml Sun Aug 16 21:59:36 2015
@@ -38,6 +38,7 @@
              individual artifacts. To avoid a dependency hell, we must not allow this.
              All Maven projects should depend on individual artifacts, not the uber-JAR. -->
         <skipDeploy>true</skipDeploy>
+        <skipSite>true</skipSite>
     </properties>
 
     <dependencies>
@@ -114,12 +115,6 @@
                     </dependency>
                 </dependencies>
             </plugin>
-            <plugin>
-                <artifactId>maven-site-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
-            </plugin>
         </plugins>
     </build>
 </project>

Modified: webservices/axiom/trunk/axiom-api/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/axiom-api/pom.xml?rev=1696167&r1=1696166&r2=1696167&view=diff
==============================================================================
--- webservices/axiom/trunk/axiom-api/pom.xml (original)
+++ webservices/axiom/trunk/axiom-api/pom.xml Sun Aug 16 21:59:36 2015
@@ -33,6 +33,10 @@
     <description>The Axiom API</description>
     <url>http://ws.apache.org/axiom/</url>
 
+    <properties>
+        <skipSite>true</skipSite>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>org.apache.geronimo.specs</groupId>
@@ -261,12 +265,6 @@
                     </execution>
                 </executions>
             </plugin>
-            <plugin>
-                <artifactId>maven-site-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
-            </plugin>
         </plugins>
     </build>
 

Modified: webservices/axiom/trunk/axiom-c14n/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/axiom-c14n/pom.xml?rev=1696167&r1=1696166&r2=1696167&view=diff
==============================================================================
--- webservices/axiom/trunk/axiom-c14n/pom.xml (original)
+++ webservices/axiom/trunk/axiom-c14n/pom.xml Sun Aug 16 21:59:36 2015
@@ -34,6 +34,10 @@
     <description />
     <url>http://ws.apache.org/axiom/</url>
 
+    <properties>
+        <skipSite>true</skipSite>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>${project.groupId}</groupId>
@@ -64,12 +68,6 @@
                     </instructions>
                 </configuration>
             </plugin>
-            <plugin>
-                <artifactId>maven-site-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
-            </plugin>
         </plugins>
     </build>
 </project>

Modified: webservices/axiom/trunk/axiom-compat/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/axiom-compat/pom.xml?rev=1696167&r1=1696166&r2=1696167&view=diff
==============================================================================
--- webservices/axiom/trunk/axiom-compat/pom.xml (original)
+++ webservices/axiom/trunk/axiom-compat/pom.xml Sun Aug 16 21:59:36 2015
@@ -33,6 +33,10 @@
     <description>Contains deprecated classes that will disappear in the next major release.</description>
     <url>http://ws.apache.org/axiom/</url>
 
+    <properties>
+        <skipSite>true</skipSite>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>${project.groupId}</groupId>
@@ -98,15 +102,4 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-
-    <build>
-        <plugins>
-            <plugin>
-                <artifactId>maven-site-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
 </project>

Modified: webservices/axiom/trunk/axiom-jaxb/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/axiom-jaxb/pom.xml?rev=1696167&r1=1696166&r2=1696167&view=diff
==============================================================================
--- webservices/axiom/trunk/axiom-jaxb/pom.xml (original)
+++ webservices/axiom/trunk/axiom-jaxb/pom.xml Sun Aug 16 21:59:36 2015
@@ -33,6 +33,10 @@
     <description>Provides an OMDataSource implementation for JAXB 2.x.</description>
     <url>http://ws.apache.org/axiom/</url>
 
+    <properties>
+        <skipSite>true</skipSite>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>${project.groupId}</groupId>
@@ -102,12 +106,6 @@
                     </instructions>
                 </configuration>
             </plugin>
-            <plugin>
-                <artifactId>maven-site-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
-            </plugin>
         </plugins>
     </build>
 </project>

Modified: webservices/axiom/trunk/buildutils/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/buildutils/pom.xml?rev=1696167&r1=1696166&r2=1696167&view=diff
==============================================================================
--- webservices/axiom/trunk/buildutils/pom.xml (original)
+++ webservices/axiom/trunk/buildutils/pom.xml Sun Aug 16 21:59:36 2015
@@ -38,6 +38,10 @@
         <module>shade-osgi</module>
     </modules>
 
+    <properties>
+        <skipSite>true</skipSite>
+    </properties>
+
     <build>
         <plugins>
             <!-- The build requires Java 1.6; therefore we can use that version for the build utils as well -->
@@ -68,12 +72,6 @@
                     </execution>
                 </executions>
             </plugin>
-            <plugin>
-                <artifactId>maven-site-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
-            </plugin>
         </plugins>
     </build>
 </project>

Modified: webservices/axiom/trunk/distribution/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/distribution/pom.xml?rev=1696167&r1=1696166&r2=1696167&view=diff
==============================================================================
--- webservices/axiom/trunk/distribution/pom.xml (original)
+++ webservices/axiom/trunk/distribution/pom.xml Sun Aug 16 21:59:36 2015
@@ -33,6 +33,7 @@
 
     <properties>
         <skipDeploy>true</skipDeploy>
+        <skipSite>true</skipSite>
     </properties>
 
     <dependencies>
@@ -145,12 +146,6 @@
                     </execution>
                 </executions>
             </plugin>
-            <plugin>
-                <artifactId>maven-site-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
-            </plugin>
         </plugins>
     </build>
 </project>

Modified: webservices/axiom/trunk/implementations/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/implementations/pom.xml?rev=1696167&r1=1696166&r2=1696167&view=diff
==============================================================================
--- webservices/axiom/trunk/implementations/pom.xml (original)
+++ webservices/axiom/trunk/implementations/pom.xml Sun Aug 16 21:59:36 2015
@@ -38,6 +38,10 @@
         <module>fom-impl</module>
     </modules>
 
+    <properties>
+        <skipSite>true</skipSite>
+    </properties>
+
     <build>
         <plugins>
             <plugin>
@@ -111,12 +115,6 @@
                     </dependency>
                 </dependencies>
             </plugin>
-            <plugin>
-                <artifactId>maven-site-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
-            </plugin>
         </plugins>
     </build>
 </project>

Modified: webservices/axiom/trunk/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/pom.xml?rev=1696167&r1=1696166&r2=1696167&view=diff
==============================================================================
--- webservices/axiom/trunk/pom.xml (original)
+++ webservices/axiom/trunk/pom.xml Sun Aug 16 21:59:36 2015
@@ -263,6 +263,7 @@
         <springws.version>2.2.0.RELEASE</springws.version>
         
         <skipDeploy>false</skipDeploy>
+        <skipSite>false</skipSite>
     </properties>
 
     <repositories>
@@ -900,6 +901,12 @@
                 </configuration>
             </plugin>
             <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <skip>${skipSite}</skip>
+                </configuration>
+            </plugin>
+            <plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>tidy-maven-plugin</artifactId>
                 <version>1.0-beta-1</version>

Modified: webservices/axiom/trunk/samples/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/samples/pom.xml?rev=1696167&r1=1696166&r2=1696167&view=diff
==============================================================================
--- webservices/axiom/trunk/samples/pom.xml (original)
+++ webservices/axiom/trunk/samples/pom.xml Sun Aug 16 21:59:36 2015
@@ -36,6 +36,7 @@
 
     <properties>
         <skipDeploy>true</skipDeploy>
+        <skipSite>true</skipSite>
     </properties>
 
     <dependencies>
@@ -94,12 +95,6 @@
                     </includes>
                 </configuration>
             </plugin>
-            <plugin>
-                <artifactId>maven-site-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
-            </plugin>
         </plugins>
     </build>
 </project>

Modified: webservices/axiom/trunk/systests/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/systests/pom.xml?rev=1696167&r1=1696166&r2=1696167&view=diff
==============================================================================
--- webservices/axiom/trunk/systests/pom.xml (original)
+++ webservices/axiom/trunk/systests/pom.xml Sun Aug 16 21:59:36 2015
@@ -44,16 +44,6 @@
 
     <properties>
         <skipDeploy>true</skipDeploy>
+        <skipSite>true</skipSite>
     </properties>
-
-    <build>
-        <plugins>
-            <plugin>
-                <artifactId>maven-site-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
 </project>

Modified: webservices/axiom/trunk/testing/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/testing/pom.xml?rev=1696167&r1=1696166&r2=1696167&view=diff
==============================================================================
--- webservices/axiom/trunk/testing/pom.xml (original)
+++ webservices/axiom/trunk/testing/pom.xml Sun Aug 16 21:59:36 2015
@@ -46,6 +46,10 @@
         <module>xml-truth</module>
     </modules>
 
+    <properties>
+        <skipSite>true</skipSite>
+    </properties>
+
     <build>
         <plugins>
             <plugin>
@@ -66,12 +70,6 @@
                     </signature>
                 </configuration>
             </plugin>
-            <plugin>
-                <artifactId>maven-site-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
-            </plugin>
         </plugins>
     </build>
 </project>