Author: hboutemy
Date: Sat Jul 20 21:39:39 2013
New Revision: 1505215

URL: http://svn.apache.org/r1505215
Log:
[MPLUGIN-248] fixed XML-Namespace in ITs for ant-based mojos.
Submitted by Mirko Friedenhagen

Modified:
    
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-basic/src/main/scripts/touch.mojos.xml
    
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-reference-parameter/src/main/scripts/test.mojos.xml
    
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/plugin/src/main/scripts/test.mojos.xml
    
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-since-maven-plugin/src/main/scripts/sample.mojos.xml
    
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/fix-maven-since-3.x/antsample-maven-plugin/src/main/scripts/sample.mojos.xml

Modified: 
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-basic/src/main/scripts/touch.mojos.xml
URL: 
http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-basic/src/main/scripts/touch.mojos.xml?rev=1505215&r1=1505214&r2=1505215&view=diff
==============================================================================
--- 
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-basic/src/main/scripts/touch.mojos.xml
 (original)
+++ 
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-basic/src/main/scripts/touch.mojos.xml
 Sat Jul 20 21:39:39 2013
@@ -19,8 +19,10 @@
   ~ under the License.
   -->
 <!-- START SNIPPET: ant-mojo -->
-<pluginMetadata xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-                xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/plugin-metadata-1.0.0.xsd";>
+<pluginMetadata
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+    xmlns="http://maven.apache.org/PLUGIN-METADATA/1.0.0";
+    xsi:schemaLocation="http://maven.apache.org/PLUGIN-METADATA/1.0.0 
http://maven.apache.org/xsd/plugin-metadata-1.0.0.xsd";>
   <mojos>
     <mojo>
       <!-- target name to call in ant script -->

Modified: 
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-reference-parameter/src/main/scripts/test.mojos.xml
URL: 
http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-reference-parameter/src/main/scripts/test.mojos.xml?rev=1505215&r1=1505214&r2=1505215&view=diff
==============================================================================
--- 
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-reference-parameter/src/main/scripts/test.mojos.xml
 (original)
+++ 
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-reference-parameter/src/main/scripts/test.mojos.xml
 Sat Jul 20 21:39:39 2013
@@ -18,8 +18,10 @@
   ~ specific language governing permissions and limitations
   ~ under the License.
   -->
-
-<pluginMetadata xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
../../../../../../maven-plugin-tools-model/target/generated-site/xsd/plugin-metadata-1.0.0.xsd
 ">
+<pluginMetadata
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+    xmlns="http://maven.apache.org/PLUGIN-METADATA/1.0.0";
+    xsi:schemaLocation="http://maven.apache.org/PLUGIN-METADATA/1.0.0 
../../../../../../maven-plugin-tools-model/target/generated-site/xsd/plugin/metadata-1.0.0.xsd">
   <mojos>
     <mojo>
       <call>test</call>

Modified: 
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/plugin/src/main/scripts/test.mojos.xml
URL: 
http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/plugin/src/main/scripts/test.mojos.xml?rev=1505215&r1=1505214&r2=1505215&view=diff
==============================================================================
--- 
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/plugin/src/main/scripts/test.mojos.xml
 (original)
+++ 
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-simple-usage/plugin/src/main/scripts/test.mojos.xml
 Sat Jul 20 21:39:39 2013
@@ -18,8 +18,10 @@
   ~ specific language governing permissions and limitations
   ~ under the License.
   -->
-
-<pluginMetadata xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
../../../../../../maven-plugin-tools-model/target/generated-site/xsd/plugin-metadata-1.0.0.xsd
 ">
+<pluginMetadata
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+    xmlns="http://maven.apache.org/PLUGIN-METADATA/1.0.0";
+    xsi:schemaLocation="http://maven.apache.org/PLUGIN-METADATA/1.0.0 
../../../../../../maven-plugin-tools-model/target/generated-site/xsd/plugin-metadata-1.0.0.xsd
 ">
   <mojos>
     <mojo>
       <call>test</call>

Modified: 
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-since-maven-plugin/src/main/scripts/sample.mojos.xml
URL: 
http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-since-maven-plugin/src/main/scripts/sample.mojos.xml?rev=1505215&r1=1505214&r2=1505215&view=diff
==============================================================================
--- 
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-since-maven-plugin/src/main/scripts/sample.mojos.xml
 (original)
+++ 
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/ant-since-maven-plugin/src/main/scripts/sample.mojos.xml
 Sat Jul 20 21:39:39 2013
@@ -17,7 +17,10 @@
   ~ specific language governing permissions and limitations
   ~ under the License.
 -->
-<pluginMetadata>
+<pluginMetadata
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+    xmlns="http://maven.apache.org/PLUGIN-METADATA/1.0.0";
+    xsi:schemaLocation="http://maven.apache.org/PLUGIN-METADATA/1.0.0 
http://maven.apache.org/xsd/plugin-metadata-1.0.0.xsd";>
   <mojos>
     <mojo>
       <goal>sample</goal>

Modified: 
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/fix-maven-since-3.x/antsample-maven-plugin/src/main/scripts/sample.mojos.xml
URL: 
http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-plugin/src/it/fix-maven-since-3.x/antsample-maven-plugin/src/main/scripts/sample.mojos.xml?rev=1505215&r1=1505214&r2=1505215&view=diff
==============================================================================
--- 
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/fix-maven-since-3.x/antsample-maven-plugin/src/main/scripts/sample.mojos.xml
 (original)
+++ 
maven/plugin-tools/trunk/maven-plugin-plugin/src/it/fix-maven-since-3.x/antsample-maven-plugin/src/main/scripts/sample.mojos.xml
 Sat Jul 20 21:39:39 2013
@@ -17,7 +17,10 @@
   ~ specific language governing permissions and limitations
   ~ under the License.
   -->
-<pluginMetadata>
+<pluginMetadata
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+    xmlns="http://maven.apache.org/PLUGIN-METADATA/1.0.0";
+    xsi:schemaLocation="http://maven.apache.org/PLUGIN-METADATA/1.0.0 
http://maven.apache.org/xsd/plugin-metadata-1.0.0.xsd";>
   <mojos>
     <mojo>
       <goal>sample</goal>


Reply via email to