You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by lt...@apache.org on 2005/12/07 07:19:09 UTC

svn commit: r354735 - in /maven/maven-1/plugins/trunk: abbot/ announcement/ ant/ antlr/ aspectj/ castor/ changelog/ changes/ checkstyle/ clean/ clover/ console/ cruisecontrol/ dashboard/ developer-activity/ dist/ ear/ ejb/ examples/ faq/ file-activity/...

Author: ltheussl
Date: Tue Dec  6 22:18:42 2005
New Revision: 354735

URL: http://svn.apache.org/viewcvs?rev=354735&view=rev
Log:
Add namespace declaration to all poms

Modified:
    maven/maven-1/plugins/trunk/abbot/project.xml
    maven/maven-1/plugins/trunk/announcement/project.xml
    maven/maven-1/plugins/trunk/ant/project.xml
    maven/maven-1/plugins/trunk/antlr/project.xml
    maven/maven-1/plugins/trunk/aspectj/project.xml
    maven/maven-1/plugins/trunk/castor/project.xml
    maven/maven-1/plugins/trunk/changelog/project.xml
    maven/maven-1/plugins/trunk/changes/project.xml
    maven/maven-1/plugins/trunk/checkstyle/project.xml
    maven/maven-1/plugins/trunk/clean/project.xml
    maven/maven-1/plugins/trunk/clover/project.xml
    maven/maven-1/plugins/trunk/console/project.xml
    maven/maven-1/plugins/trunk/cruisecontrol/project.xml
    maven/maven-1/plugins/trunk/dashboard/project.xml
    maven/maven-1/plugins/trunk/developer-activity/project.xml
    maven/maven-1/plugins/trunk/dist/project.xml
    maven/maven-1/plugins/trunk/ear/project.xml
    maven/maven-1/plugins/trunk/ejb/project.xml
    maven/maven-1/plugins/trunk/examples/project.xml
    maven/maven-1/plugins/trunk/faq/project.xml
    maven/maven-1/plugins/trunk/file-activity/project.xml
    maven/maven-1/plugins/trunk/genapp/project.xml
    maven/maven-1/plugins/trunk/gump/project.xml
    maven/maven-1/plugins/trunk/hibernate/project.xml
    maven/maven-1/plugins/trunk/html2xdoc/project.xml
    maven/maven-1/plugins/trunk/idea/project.xml
    maven/maven-1/plugins/trunk/j2ee/project.xml
    maven/maven-1/plugins/trunk/jalopy/project.xml
    maven/maven-1/plugins/trunk/jar/project.xml
    maven/maven-1/plugins/trunk/java/project.xml
    maven/maven-1/plugins/trunk/javacc/project.xml
    maven/maven-1/plugins/trunk/javadoc/project.xml
    maven/maven-1/plugins/trunk/jboss/project.xml
    maven/maven-1/plugins/trunk/jbuilder/project.xml
    maven/maven-1/plugins/trunk/jcoverage/project.xml
    maven/maven-1/plugins/trunk/jdepend/project.xml
    maven/maven-1/plugins/trunk/jdiff/project.xml
    maven/maven-1/plugins/trunk/jellydoc/project.xml
    maven/maven-1/plugins/trunk/jetty/project.xml
    maven/maven-1/plugins/trunk/jnlp/project.xml
    maven/maven-1/plugins/trunk/junit-report/project.xml
    maven/maven-1/plugins/trunk/jxr/project.xml
    maven/maven-1/plugins/trunk/license/project.xml
    maven/maven-1/plugins/trunk/linkcheck/project.xml
    maven/maven-1/plugins/trunk/multichanges/project.xml
    maven/maven-1/plugins/trunk/multiproject/project.xml
    maven/maven-1/plugins/trunk/native/project.xml
    maven/maven-1/plugins/trunk/nsis/project.xml
    maven/maven-1/plugins/trunk/pdf/project.xml
    maven/maven-1/plugins/trunk/plugin-parent/project.xml
    maven/maven-1/plugins/trunk/plugin/project.xml
    maven/maven-1/plugins/trunk/pmd/project.xml
    maven/maven-1/plugins/trunk/pom/project.xml
    maven/maven-1/plugins/trunk/rar/project.xml
    maven/maven-1/plugins/trunk/repository/project.xml
    maven/maven-1/plugins/trunk/scm/project.xml
    maven/maven-1/plugins/trunk/simian/project.xml
    maven/maven-1/plugins/trunk/site/project.xml
    maven/maven-1/plugins/trunk/tasklist/project.xml
    maven/maven-1/plugins/trunk/test/project.xml
    maven/maven-1/plugins/trunk/touchstone-partner/project.xml
    maven/maven-1/plugins/trunk/touchstone/project.xml
    maven/maven-1/plugins/trunk/uberjar/project.xml
    maven/maven-1/plugins/trunk/war/project.xml

Modified: maven/maven-1/plugins/trunk/abbot/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/abbot/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/abbot/project.xml (original)
+++ maven/maven-1/plugins/trunk/abbot/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-abbot-plugin</id>

Modified: maven/maven-1/plugins/trunk/announcement/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/announcement/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/announcement/project.xml (original)
+++ maven/maven-1/plugins/trunk/announcement/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-announcement-plugin</id>

Modified: maven/maven-1/plugins/trunk/ant/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/ant/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/ant/project.xml (original)
+++ maven/maven-1/plugins/trunk/ant/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-ant-plugin</id>

Modified: maven/maven-1/plugins/trunk/antlr/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/antlr/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/antlr/project.xml (original)
+++ maven/maven-1/plugins/trunk/antlr/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-antlr-plugin</id>

Modified: maven/maven-1/plugins/trunk/aspectj/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/aspectj/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/aspectj/project.xml (original)
+++ maven/maven-1/plugins/trunk/aspectj/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-aspectj-plugin</id>

Modified: maven/maven-1/plugins/trunk/castor/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/castor/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/castor/project.xml (original)
+++ maven/maven-1/plugins/trunk/castor/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-castor-plugin</id>

Modified: maven/maven-1/plugins/trunk/changelog/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/changelog/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/changelog/project.xml (original)
+++ maven/maven-1/plugins/trunk/changelog/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-changelog-plugin</id>

Modified: maven/maven-1/plugins/trunk/changes/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/changes/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/changes/project.xml (original)
+++ maven/maven-1/plugins/trunk/changes/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-changes-plugin</id>

Modified: maven/maven-1/plugins/trunk/checkstyle/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/checkstyle/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/checkstyle/project.xml (original)
+++ maven/maven-1/plugins/trunk/checkstyle/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-checkstyle-plugin</id>

Modified: maven/maven-1/plugins/trunk/clean/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/clean/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/clean/project.xml (original)
+++ maven/maven-1/plugins/trunk/clean/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-clean-plugin</id>

Modified: maven/maven-1/plugins/trunk/clover/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/clover/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/clover/project.xml (original)
+++ maven/maven-1/plugins/trunk/clover/project.xml Tue Dec  6 22:18:42 2005
@@ -17,7 +17,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-clover-plugin</id>

Modified: maven/maven-1/plugins/trunk/console/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/console/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/console/project.xml (original)
+++ maven/maven-1/plugins/trunk/console/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-console-plugin</id>

Modified: maven/maven-1/plugins/trunk/cruisecontrol/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/cruisecontrol/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/cruisecontrol/project.xml (original)
+++ maven/maven-1/plugins/trunk/cruisecontrol/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-cruisecontrol-plugin</id>

Modified: maven/maven-1/plugins/trunk/dashboard/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dashboard/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/dashboard/project.xml (original)
+++ maven/maven-1/plugins/trunk/dashboard/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-dashboard-plugin</id>

Modified: maven/maven-1/plugins/trunk/developer-activity/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/developer-activity/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/developer-activity/project.xml (original)
+++ maven/maven-1/plugins/trunk/developer-activity/project.xml Tue Dec  6 22:18:42 2005
@@ -17,7 +17,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-developer-activity-plugin</id>

Modified: maven/maven-1/plugins/trunk/dist/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/dist/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/dist/project.xml (original)
+++ maven/maven-1/plugins/trunk/dist/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-dist-plugin</id>

Modified: maven/maven-1/plugins/trunk/ear/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/ear/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/ear/project.xml (original)
+++ maven/maven-1/plugins/trunk/ear/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-ear-plugin</id>

Modified: maven/maven-1/plugins/trunk/ejb/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/ejb/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/ejb/project.xml (original)
+++ maven/maven-1/plugins/trunk/ejb/project.xml Tue Dec  6 22:18:42 2005
@@ -17,7 +17,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-ejb-plugin</id>

Modified: maven/maven-1/plugins/trunk/examples/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/examples/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/examples/project.xml (original)
+++ maven/maven-1/plugins/trunk/examples/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  -->
 
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <!-- the version of maven's project object model -->
 
   <pomVersion>3</pomVersion>

Modified: maven/maven-1/plugins/trunk/faq/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/faq/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/faq/project.xml (original)
+++ maven/maven-1/plugins/trunk/faq/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-faq-plugin</id>

Modified: maven/maven-1/plugins/trunk/file-activity/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/file-activity/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/file-activity/project.xml (original)
+++ maven/maven-1/plugins/trunk/file-activity/project.xml Tue Dec  6 22:18:42 2005
@@ -17,7 +17,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-file-activity-plugin</id>

Modified: maven/maven-1/plugins/trunk/genapp/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/genapp/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/genapp/project.xml (original)
+++ maven/maven-1/plugins/trunk/genapp/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-genapp-plugin</id>

Modified: maven/maven-1/plugins/trunk/gump/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/gump/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/gump/project.xml (original)
+++ maven/maven-1/plugins/trunk/gump/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-gump-plugin</id>

Modified: maven/maven-1/plugins/trunk/hibernate/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/hibernate/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/hibernate/project.xml (original)
+++ maven/maven-1/plugins/trunk/hibernate/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-hibernate-plugin</id>

Modified: maven/maven-1/plugins/trunk/html2xdoc/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/html2xdoc/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/html2xdoc/project.xml (original)
+++ maven/maven-1/plugins/trunk/html2xdoc/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-html2xdoc-plugin</id>

Modified: maven/maven-1/plugins/trunk/idea/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/idea/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/idea/project.xml (original)
+++ maven/maven-1/plugins/trunk/idea/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-idea-plugin</id>

Modified: maven/maven-1/plugins/trunk/j2ee/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/j2ee/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/j2ee/project.xml (original)
+++ maven/maven-1/plugins/trunk/j2ee/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-j2ee-plugin</id>

Modified: maven/maven-1/plugins/trunk/jalopy/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jalopy/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/jalopy/project.xml (original)
+++ maven/maven-1/plugins/trunk/jalopy/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-jalopy-plugin</id>

Modified: maven/maven-1/plugins/trunk/jar/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jar/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/jar/project.xml (original)
+++ maven/maven-1/plugins/trunk/jar/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-jar-plugin</id>

Modified: maven/maven-1/plugins/trunk/java/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/java/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/java/project.xml (original)
+++ maven/maven-1/plugins/trunk/java/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-java-plugin</id>

Modified: maven/maven-1/plugins/trunk/javacc/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/javacc/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/javacc/project.xml (original)
+++ maven/maven-1/plugins/trunk/javacc/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-javacc-plugin</id>

Modified: maven/maven-1/plugins/trunk/javadoc/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/javadoc/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/javadoc/project.xml (original)
+++ maven/maven-1/plugins/trunk/javadoc/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
   -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <artifactId>maven-javadoc-plugin</artifactId>

Modified: maven/maven-1/plugins/trunk/jboss/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jboss/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/jboss/project.xml (original)
+++ maven/maven-1/plugins/trunk/jboss/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-jboss-plugin</id>

Modified: maven/maven-1/plugins/trunk/jbuilder/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jbuilder/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/jbuilder/project.xml (original)
+++ maven/maven-1/plugins/trunk/jbuilder/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-jbuilder-plugin</id>

Modified: maven/maven-1/plugins/trunk/jcoverage/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jcoverage/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/jcoverage/project.xml (original)
+++ maven/maven-1/plugins/trunk/jcoverage/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-jcoverage-plugin</id>

Modified: maven/maven-1/plugins/trunk/jdepend/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jdepend/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/jdepend/project.xml (original)
+++ maven/maven-1/plugins/trunk/jdepend/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-jdepend-plugin</id>

Modified: maven/maven-1/plugins/trunk/jdiff/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jdiff/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/jdiff/project.xml (original)
+++ maven/maven-1/plugins/trunk/jdiff/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-jdiff-plugin</id>

Modified: maven/maven-1/plugins/trunk/jellydoc/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jellydoc/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/jellydoc/project.xml (original)
+++ maven/maven-1/plugins/trunk/jellydoc/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-jellydoc-plugin</id>

Modified: maven/maven-1/plugins/trunk/jetty/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jetty/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/jetty/project.xml (original)
+++ maven/maven-1/plugins/trunk/jetty/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-jetty-plugin</id>

Modified: maven/maven-1/plugins/trunk/jnlp/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jnlp/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/jnlp/project.xml (original)
+++ maven/maven-1/plugins/trunk/jnlp/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-jnlp-plugin</id>

Modified: maven/maven-1/plugins/trunk/junit-report/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/junit-report/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/junit-report/project.xml (original)
+++ maven/maven-1/plugins/trunk/junit-report/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-junit-report-plugin</id>

Modified: maven/maven-1/plugins/trunk/jxr/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jxr/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/jxr/project.xml (original)
+++ maven/maven-1/plugins/trunk/jxr/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-jxr-plugin</id>

Modified: maven/maven-1/plugins/trunk/license/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/license/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/license/project.xml (original)
+++ maven/maven-1/plugins/trunk/license/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-license-plugin</id>

Modified: maven/maven-1/plugins/trunk/linkcheck/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/linkcheck/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/linkcheck/project.xml (original)
+++ maven/maven-1/plugins/trunk/linkcheck/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-linkcheck-plugin</id>

Modified: maven/maven-1/plugins/trunk/multichanges/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/multichanges/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/multichanges/project.xml (original)
+++ maven/maven-1/plugins/trunk/multichanges/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-multichanges-plugin</id>

Modified: maven/maven-1/plugins/trunk/multiproject/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/multiproject/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/multiproject/project.xml (original)
+++ maven/maven-1/plugins/trunk/multiproject/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-multiproject-plugin</id>

Modified: maven/maven-1/plugins/trunk/native/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/native/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/native/project.xml (original)
+++ maven/maven-1/plugins/trunk/native/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-native-plugin</id>

Modified: maven/maven-1/plugins/trunk/nsis/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/nsis/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/nsis/project.xml (original)
+++ maven/maven-1/plugins/trunk/nsis/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <name>Maven NSIS Plug-in</name>

Modified: maven/maven-1/plugins/trunk/pdf/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/pdf/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/pdf/project.xml (original)
+++ maven/maven-1/plugins/trunk/pdf/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>${basedir}/../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <artifactId>maven-pdf-plugin</artifactId>

Modified: maven/maven-1/plugins/trunk/plugin-parent/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/plugin-parent/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/plugin-parent/project.xml (original)
+++ maven/maven-1/plugins/trunk/plugin-parent/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
 
   <pomVersion>3</pomVersion>
   <id>plugin-parent</id>

Modified: maven/maven-1/plugins/trunk/plugin/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/plugin/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/plugin/project.xml (original)
+++ maven/maven-1/plugins/trunk/plugin/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-plugin-plugin</id>

Modified: maven/maven-1/plugins/trunk/pmd/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/pmd/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/pmd/project.xml (original)
+++ maven/maven-1/plugins/trunk/pmd/project.xml Tue Dec  6 22:18:42 2005
@@ -17,7 +17,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-pmd-plugin</id>

Modified: maven/maven-1/plugins/trunk/pom/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/pom/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/pom/project.xml (original)
+++ maven/maven-1/plugins/trunk/pom/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project xmlns="http://maven.apache.org/POM/3.0.0">
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-pom-plugin</id>

Modified: maven/maven-1/plugins/trunk/rar/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/rar/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/rar/project.xml (original)
+++ maven/maven-1/plugins/trunk/rar/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-rar-plugin</id>

Modified: maven/maven-1/plugins/trunk/repository/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/repository/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/repository/project.xml (original)
+++ maven/maven-1/plugins/trunk/repository/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-repository-plugin</id>

Modified: maven/maven-1/plugins/trunk/scm/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/scm/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/scm/project.xml (original)
+++ maven/maven-1/plugins/trunk/scm/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-scm-plugin</id>

Modified: maven/maven-1/plugins/trunk/simian/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/simian/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/simian/project.xml (original)
+++ maven/maven-1/plugins/trunk/simian/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-simian-plugin</id>

Modified: maven/maven-1/plugins/trunk/site/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/site/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/site/project.xml (original)
+++ maven/maven-1/plugins/trunk/site/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-site-plugin</id>

Modified: maven/maven-1/plugins/trunk/tasklist/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/tasklist/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/tasklist/project.xml (original)
+++ maven/maven-1/plugins/trunk/tasklist/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-tasklist-plugin</id>

Modified: maven/maven-1/plugins/trunk/test/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/test/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/test/project.xml (original)
+++ maven/maven-1/plugins/trunk/test/project.xml Tue Dec  6 22:18:42 2005
@@ -16,7 +16,8 @@
  * limitations under the License.
  */
  -->
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-test-plugin</id>

Modified: maven/maven-1/plugins/trunk/touchstone-partner/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/touchstone-partner/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/touchstone-partner/project.xml (original)
+++ maven/maven-1/plugins/trunk/touchstone-partner/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  -->
 
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-touchstone-partner-plugin</id>

Modified: maven/maven-1/plugins/trunk/touchstone/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/touchstone/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/touchstone/project.xml (original)
+++ maven/maven-1/plugins/trunk/touchstone/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  -->
 
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-touchstone-plugin</id>

Modified: maven/maven-1/plugins/trunk/uberjar/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/uberjar/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/uberjar/project.xml (original)
+++ maven/maven-1/plugins/trunk/uberjar/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <!-- the version of maven's project object model -->
 

Modified: maven/maven-1/plugins/trunk/war/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/war/project.xml?rev=354735&r1=354734&r2=354735&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/war/project.xml (original)
+++ maven/maven-1/plugins/trunk/war/project.xml Tue Dec  6 22:18:42 2005
@@ -18,7 +18,8 @@
  */
  -->
 
-<project>
+<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
   <id>maven-war-plugin</id>