Author: veithen
Date: Sun Dec  5 12:25:32 2010
New Revision: 1042332

URL: http://svn.apache.org/viewvc?rev=1042332&view=rev
Log:
Skip site generation in submodules. We only need to generate the site of the 
root project.

Modified:
    axis/axis2/java/sandesha/trunk/modules/client/pom.xml
    axis/axis2/java/sandesha/trunk/modules/core/pom.xml
    axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml
    axis/axis2/java/sandesha/trunk/modules/interop/pom.xml
    axis/axis2/java/sandesha/trunk/modules/mar/pom.xml
    axis/axis2/java/sandesha/trunk/modules/persistence/pom.xml
    axis/axis2/java/sandesha/trunk/modules/policy/pom.xml
    axis/axis2/java/sandesha/trunk/modules/rampart-integration/pom.xml
    axis/axis2/java/sandesha/trunk/modules/samples/pom.xml
    axis/axis2/java/sandesha/trunk/modules/tests/pom.xml

Modified: axis/axis2/java/sandesha/trunk/modules/client/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/client/pom.xml?rev=1042332&r1=1042331&r2=1042332&view=diff
==============================================================================
--- axis/axis2/java/sandesha/trunk/modules/client/pom.xml (original)
+++ axis/axis2/java/sandesha/trunk/modules/client/pom.xml Sun Dec  5 12:25:32 
2010
@@ -65,6 +65,12 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <generateReports>false</generateReports>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
     

Modified: axis/axis2/java/sandesha/trunk/modules/core/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/core/pom.xml?rev=1042332&r1=1042331&r2=1042332&view=diff
==============================================================================
--- axis/axis2/java/sandesha/trunk/modules/core/pom.xml (original)
+++ axis/axis2/java/sandesha/trunk/modules/core/pom.xml Sun Dec  5 12:25:32 2010
@@ -55,6 +55,12 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <generateReports>false</generateReports>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
     <dependencies>

Modified: axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml?rev=1042332&r1=1042331&r2=1042332&view=diff
==============================================================================
--- axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml (original)
+++ axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml Sun Dec  5 
12:25:32 2010
@@ -132,6 +132,12 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <generateReports>false</generateReports>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 </project>

Modified: axis/axis2/java/sandesha/trunk/modules/interop/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/interop/pom.xml?rev=1042332&r1=1042331&r2=1042332&view=diff
==============================================================================
--- axis/axis2/java/sandesha/trunk/modules/interop/pom.xml (original)
+++ axis/axis2/java/sandesha/trunk/modules/interop/pom.xml Sun Dec  5 12:25:32 
2010
@@ -98,6 +98,12 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <generateReports>false</generateReports>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
    

Modified: axis/axis2/java/sandesha/trunk/modules/mar/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/mar/pom.xml?rev=1042332&r1=1042331&r2=1042332&view=diff
==============================================================================
--- axis/axis2/java/sandesha/trunk/modules/mar/pom.xml (original)
+++ axis/axis2/java/sandesha/trunk/modules/mar/pom.xml Sun Dec  5 12:25:32 2010
@@ -90,6 +90,12 @@
                     <moduleXmlFile>module.xml</moduleXmlFile>
                 </configuration>
             </plugin> 
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <generateReports>false</generateReports>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
     

Modified: axis/axis2/java/sandesha/trunk/modules/persistence/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/persistence/pom.xml?rev=1042332&r1=1042331&r2=1042332&view=diff
==============================================================================
--- axis/axis2/java/sandesha/trunk/modules/persistence/pom.xml (original)
+++ axis/axis2/java/sandesha/trunk/modules/persistence/pom.xml Sun Dec  5 
12:25:32 2010
@@ -67,6 +67,12 @@
                     <!--<argLine>-Xnoagent -Djava.compiler=NONE -Xdebug 
-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005</argLine>-->
                 </configuration>
             </plugin>
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <generateReports>false</generateReports>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 

Modified: axis/axis2/java/sandesha/trunk/modules/policy/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/policy/pom.xml?rev=1042332&r1=1042331&r2=1042332&view=diff
==============================================================================
--- axis/axis2/java/sandesha/trunk/modules/policy/pom.xml (original)
+++ axis/axis2/java/sandesha/trunk/modules/policy/pom.xml Sun Dec  5 12:25:32 
2010
@@ -70,6 +70,12 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <generateReports>false</generateReports>
+                </configuration>
+            </plugin>
         </plugins>
 
     </build>

Modified: axis/axis2/java/sandesha/trunk/modules/rampart-integration/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/rampart-integration/pom.xml?rev=1042332&r1=1042331&r2=1042332&view=diff
==============================================================================
--- axis/axis2/java/sandesha/trunk/modules/rampart-integration/pom.xml 
(original)
+++ axis/axis2/java/sandesha/trunk/modules/rampart-integration/pom.xml Sun Dec  
5 12:25:32 2010
@@ -55,6 +55,12 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <generateReports>false</generateReports>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 

Modified: axis/axis2/java/sandesha/trunk/modules/samples/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/samples/pom.xml?rev=1042332&r1=1042331&r2=1042332&view=diff
==============================================================================
--- axis/axis2/java/sandesha/trunk/modules/samples/pom.xml (original)
+++ axis/axis2/java/sandesha/trunk/modules/samples/pom.xml Sun Dec  5 12:25:32 
2010
@@ -65,7 +65,12 @@
                     </execution>
                 </executions>
             </plugin>
-
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <generateReports>false</generateReports>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
     

Modified: axis/axis2/java/sandesha/trunk/modules/tests/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/tests/pom.xml?rev=1042332&r1=1042331&r2=1042332&view=diff
==============================================================================
--- axis/axis2/java/sandesha/trunk/modules/tests/pom.xml (original)
+++ axis/axis2/java/sandesha/trunk/modules/tests/pom.xml Sun Dec  5 12:25:32 
2010
@@ -143,6 +143,12 @@
                     <!--<argLine>-Xnoagent -Djava.compiler=NONE -Xdebug 
-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005</argLine>-->
                 </configuration>
             </plugin>
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <generateReports>false</generateReports>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
     


Reply via email to