You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jd...@apache.org on 2006/02/22 04:07:59 UTC

svn commit: r379662 - in /maven/components/branches/maven-2.0.x: ./ maven-model/ maven-plugin-descriptor/ maven-plugin-parameter-documenter/ maven-plugin-registry/ maven-plugin-tools/maven-plugin-tools-model/ maven-profile/ maven-repository-metadata/ m...

Author: jdcasey
Date: Tue Feb 21 19:07:56 2006
New Revision: 379662

URL: http://svn.apache.org/viewcvs?rev=379662&view=rev
Log:
[MNG-2095] Adding xsd generation to site phase for modello projects.


Modified:
    maven/components/branches/maven-2.0.x/   (props changed)
    maven/components/branches/maven-2.0.x/maven-model/pom.xml
    maven/components/branches/maven-2.0.x/maven-plugin-descriptor/pom.xml
    maven/components/branches/maven-2.0.x/maven-plugin-parameter-documenter/pom.xml
    maven/components/branches/maven-2.0.x/maven-plugin-registry/pom.xml
    maven/components/branches/maven-2.0.x/maven-plugin-tools/maven-plugin-tools-model/pom.xml
    maven/components/branches/maven-2.0.x/maven-profile/pom.xml
    maven/components/branches/maven-2.0.x/maven-repository-metadata/pom.xml
    maven/components/branches/maven-2.0.x/maven-settings/pom.xml

Propchange: maven/components/branches/maven-2.0.x/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Tue Feb 21 19:07:56 2006
@@ -1 +1 @@
-/maven/components/trunk:1-368287,368989,369304,369305,370406,371079,372056,372061
+/maven/components/trunk:1-368287,368989,369304,369305,370406,371079,372056,372061,379247,379285,379288,379372,379516,379549,379572,379587

Modified: maven/components/branches/maven-2.0.x/maven-model/pom.xml
URL: http://svn.apache.org/viewcvs/maven/components/branches/maven-2.0.x/maven-model/pom.xml?rev=379662&r1=379661&r2=379662&view=diff
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-model/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-model/pom.xml Tue Feb 21 19:07:56 2006
@@ -25,6 +25,13 @@
               <goal>xsd</goal>
             </goals>
           </execution>
+          <execution>
+            <id>site-xsd</id>
+            <phase>site</phase>
+            <goals>
+              <goal>xsd</goal>
+            </goals>
+          </execution>
         </executions>
         <configuration>
           <version>4.0.0</version>

Modified: maven/components/branches/maven-2.0.x/maven-plugin-descriptor/pom.xml
URL: http://svn.apache.org/viewcvs/maven/components/branches/maven-2.0.x/maven-plugin-descriptor/pom.xml?rev=379662&r1=379661&r2=379662&view=diff
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-plugin-descriptor/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-plugin-descriptor/pom.xml Tue Feb 21 19:07:56 2006
@@ -17,6 +17,13 @@
         <version>1.0-alpha-7</version>
         <executions>
           <execution>
+            <id>site-xsd</id>
+            <phase>site</phase>
+            <goals>
+              <goal>xsd</goal>
+            </goals>
+          </execution>
+          <execution>
             <goals>
               <goal>java</goal>
               <goal>xpp3-reader</goal>
@@ -47,4 +54,4 @@
       <artifactId>plexus-container-default</artifactId>
     </dependency>
   </dependencies>
-</project>
\ No newline at end of file
+</project>

Modified: maven/components/branches/maven-2.0.x/maven-plugin-parameter-documenter/pom.xml
URL: http://svn.apache.org/viewcvs/maven/components/branches/maven-2.0.x/maven-plugin-parameter-documenter/pom.xml?rev=379662&r1=379661&r2=379662&view=diff
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-plugin-parameter-documenter/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-plugin-parameter-documenter/pom.xml Tue Feb 21 19:07:56 2006
@@ -16,6 +16,13 @@
         <version>1.0-alpha-7</version>
         <executions>
           <execution>
+            <id>site-xsd</id>
+            <phase>site</phase>
+            <goals>
+              <goal>xsd</goal>
+            </goals>
+          </execution>
+          <execution>
             <id>base</id>
             <goals>
               <goal>xpp3-writer</goal>
@@ -49,4 +56,4 @@
       <artifactId>plexus-container-default</artifactId>
     </dependency>
   </dependencies>
-</project>
\ No newline at end of file
+</project>

Modified: maven/components/branches/maven-2.0.x/maven-plugin-registry/pom.xml
URL: http://svn.apache.org/viewcvs/maven/components/branches/maven-2.0.x/maven-plugin-registry/pom.xml?rev=379662&r1=379661&r2=379662&view=diff
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-plugin-registry/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-plugin-registry/pom.xml Tue Feb 21 19:07:56 2006
@@ -17,6 +17,13 @@
         <version>1.0-alpha-7</version>
         <executions>
           <execution>
+            <id>site-xsd</id>
+            <phase>site</phase>
+            <goals>
+              <goal>xsd</goal>
+            </goals>
+          </execution>
+          <execution>
             <goals>
               <goal>xpp3-writer</goal>
               <goal>java</goal>
@@ -41,4 +48,4 @@
       <artifactId>plexus-container-default</artifactId>
     </dependency>
   </dependencies>
-</project>
\ No newline at end of file
+</project>

Modified: maven/components/branches/maven-2.0.x/maven-plugin-tools/maven-plugin-tools-model/pom.xml
URL: http://svn.apache.org/viewcvs/maven/components/branches/maven-2.0.x/maven-plugin-tools/maven-plugin-tools-model/pom.xml?rev=379662&r1=379661&r2=379662&view=diff
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-plugin-tools/maven-plugin-tools-model/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-plugin-tools/maven-plugin-tools-model/pom.xml Tue Feb 21 19:07:56 2006
@@ -16,6 +16,13 @@
         <artifactId>modello-maven-plugin</artifactId>
         <executions>
           <execution>
+            <id>site-xsd</id>
+            <phase>site</phase>
+            <goals>
+              <goal>xsd</goal>
+            </goals>
+          </execution>
+          <execution>
             <goals>
               <goal>java</goal>
               <goal>xpp3-reader</goal>
@@ -46,4 +53,4 @@
       <artifactId>plexus-container-default</artifactId>
     </dependency>
   </dependencies>
-</project>
\ No newline at end of file
+</project>

Modified: maven/components/branches/maven-2.0.x/maven-profile/pom.xml
URL: http://svn.apache.org/viewcvs/maven/components/branches/maven-2.0.x/maven-profile/pom.xml?rev=379662&r1=379661&r2=379662&view=diff
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-profile/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-profile/pom.xml Tue Feb 21 19:07:56 2006
@@ -16,6 +16,13 @@
         <version>1.0-alpha-7</version>
         <executions>
           <execution>
+            <id>site-xsd</id>
+            <phase>site</phase>
+            <goals>
+              <goal>xsd</goal>
+            </goals>
+          </execution>
+          <execution>
             <goals>
               <goal>xpp3-writer</goal>
               <goal>java</goal>
@@ -45,4 +52,4 @@
       <artifactId>plexus-container-default</artifactId>
     </dependency>
   </dependencies>
-</project>
\ No newline at end of file
+</project>

Modified: maven/components/branches/maven-2.0.x/maven-repository-metadata/pom.xml
URL: http://svn.apache.org/viewcvs/maven/components/branches/maven-2.0.x/maven-repository-metadata/pom.xml?rev=379662&r1=379661&r2=379662&view=diff
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-repository-metadata/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-repository-metadata/pom.xml Tue Feb 21 19:07:56 2006
@@ -18,6 +18,13 @@
         <version>1.0-alpha-7</version>
         <executions>
           <execution>
+            <id>site-xsd</id>
+            <phase>site</phase>
+            <goals>
+              <goal>xsd</goal>
+            </goals>
+          </execution>
+          <execution>
             <goals>
               <goal>xpp3-writer</goal>
               <goal>java</goal>
@@ -39,4 +46,4 @@
       <artifactId>plexus-utils</artifactId>
     </dependency>
   </dependencies>
-</project>
\ No newline at end of file
+</project>

Modified: maven/components/branches/maven-2.0.x/maven-settings/pom.xml
URL: http://svn.apache.org/viewcvs/maven/components/branches/maven-2.0.x/maven-settings/pom.xml?rev=379662&r1=379661&r2=379662&view=diff
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-settings/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-settings/pom.xml Tue Feb 21 19:07:56 2006
@@ -16,6 +16,13 @@
         <version>1.0-alpha-7</version>
         <executions>
           <execution>
+            <id>site-xsd</id>
+            <phase>site</phase>
+            <goals>
+              <goal>xsd</goal>
+            </goals>
+          </execution>
+          <execution>
             <goals>
               <goal>xpp3-writer</goal>
               <goal>java</goal>
@@ -45,4 +52,4 @@
       <artifactId>plexus-container-default</artifactId>
     </dependency>
   </dependencies>
-</project>
\ No newline at end of file
+</project>