You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2008/08/15 00:21:50 UTC

svn commit: r686066 - in /maven/plugins/trunk: maven-ant-plugin/src/it/ maven-antrun-plugin/src/it/ maven-changelog-plugin/src/it/ maven-changes-plugin/src/it/ maven-checkstyle-plugin/src/it/ maven-clean-plugin/src/it/ maven-compiler-plugin/src/it/ mav...

Author: bentmann
Date: Thu Aug 14 15:21:48 2008
New Revision: 686066

URL: http://svn.apache.org/viewvc?rev=686066&view=rev
Log:
o Added ASF snapshot repo to user settings of ITs (e.g. to make sure they can resolve snapshot parents)

Modified:
    maven/plugins/trunk/maven-ant-plugin/src/it/settings.xml
    maven/plugins/trunk/maven-antrun-plugin/src/it/settings.xml
    maven/plugins/trunk/maven-changelog-plugin/src/it/settings.xml
    maven/plugins/trunk/maven-changes-plugin/src/it/settings.xml
    maven/plugins/trunk/maven-checkstyle-plugin/src/it/settings.xml
    maven/plugins/trunk/maven-clean-plugin/src/it/settings.xml
    maven/plugins/trunk/maven-compiler-plugin/src/it/settings.xml
    maven/plugins/trunk/maven-deploy-plugin/src/it/settings.xml
    maven/plugins/trunk/maven-invoker-plugin/src/it/settings.xml
    maven/plugins/trunk/maven-jar-plugin/src/it/settings.xml
    maven/plugins/trunk/maven-javadoc-plugin/src/it/settings.xml
    maven/plugins/trunk/maven-patch-plugin/src/it/settings.xml
    maven/plugins/trunk/maven-project-info-reports-plugin/src/it/settings.xml
    maven/plugins/trunk/maven-site-plugin/src/it/settings.xml
    maven/plugins/trunk/maven-source-plugin/src/it/settings.xml
    maven/plugins/trunk/maven-war-plugin/src/it/settings.xml

Modified: maven/plugins/trunk/maven-ant-plugin/src/it/settings.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-ant-plugin/src/it/settings.xml?rev=686066&r1=686065&r2=686066&view=diff
==============================================================================
--- maven/plugins/trunk/maven-ant-plugin/src/it/settings.xml (original)
+++ maven/plugins/trunk/maven-ant-plugin/src/it/settings.xml Thu Aug 14 15:21:48 2008
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <settings>
   <profiles>
     <profile>
@@ -9,7 +29,7 @@
       <repositories>
         <repository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
@@ -17,11 +37,22 @@
             <enabled>true</enabled>
           </snapshots>
         </repository>
+        <repository>
+          <id>apache.snapshots</id>
+          <name>Apache Snapshot Repository</name>
+          <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+          <releases>
+            <enabled>false</enabled>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
       </repositories>
       <pluginRepositories>
         <pluginRepository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>

Modified: maven/plugins/trunk/maven-antrun-plugin/src/it/settings.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-antrun-plugin/src/it/settings.xml?rev=686066&r1=686065&r2=686066&view=diff
==============================================================================
--- maven/plugins/trunk/maven-antrun-plugin/src/it/settings.xml (original)
+++ maven/plugins/trunk/maven-antrun-plugin/src/it/settings.xml Thu Aug 14 15:21:48 2008
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <settings>
   <profiles>
     <profile>
@@ -9,7 +29,7 @@
       <repositories>
         <repository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
@@ -17,11 +37,22 @@
             <enabled>true</enabled>
           </snapshots>
         </repository>
+        <repository>
+          <id>apache.snapshots</id>
+          <name>Apache Snapshot Repository</name>
+          <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+          <releases>
+            <enabled>false</enabled>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
       </repositories>
       <pluginRepositories>
         <pluginRepository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>

Modified: maven/plugins/trunk/maven-changelog-plugin/src/it/settings.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-changelog-plugin/src/it/settings.xml?rev=686066&r1=686065&r2=686066&view=diff
==============================================================================
--- maven/plugins/trunk/maven-changelog-plugin/src/it/settings.xml (original)
+++ maven/plugins/trunk/maven-changelog-plugin/src/it/settings.xml Thu Aug 14 15:21:48 2008
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <settings>
   <profiles>
     <profile>
@@ -9,7 +29,7 @@
       <repositories>
         <repository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
@@ -17,11 +37,22 @@
             <enabled>true</enabled>
           </snapshots>
         </repository>
+        <repository>
+          <id>apache.snapshots</id>
+          <name>Apache Snapshot Repository</name>
+          <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+          <releases>
+            <enabled>false</enabled>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
       </repositories>
       <pluginRepositories>
         <pluginRepository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>

Modified: maven/plugins/trunk/maven-changes-plugin/src/it/settings.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-changes-plugin/src/it/settings.xml?rev=686066&r1=686065&r2=686066&view=diff
==============================================================================
--- maven/plugins/trunk/maven-changes-plugin/src/it/settings.xml (original)
+++ maven/plugins/trunk/maven-changes-plugin/src/it/settings.xml Thu Aug 14 15:21:48 2008
@@ -1,4 +1,4 @@
-<?xml version="1.0"?>
+<?xml version="1.0" encoding="UTF-8"?>
 
 <!--
 Licensed to the Apache Software Foundation (ASF) under one
@@ -22,32 +22,43 @@
 <settings>
   <profiles>
     <profile>
-      <id>apache</id>
+      <id>it-repo</id>
       <activation>
         <activeByDefault>true</activeByDefault>
-      </activation>      
+      </activation>
       <repositories>
         <repository>
-          <id>local</id>
+          <id>local.central</id>
           <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
           <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
+        <repository>
+          <id>apache.snapshots</id>
+          <name>Apache Snapshot Repository</name>
+          <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+          <releases>
             <enabled>false</enabled>
-          </snapshots>             
-        </repository>        
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
       </repositories>
       <pluginRepositories>
         <pluginRepository>
-          <id>local</id>
+          <id>local.central</id>
           <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
           <snapshots>
-            <enabled>false</enabled>
-          </snapshots>          
+            <enabled>true</enabled>
+          </snapshots>
         </pluginRepository>
       </pluginRepositories>
     </profile>

Modified: maven/plugins/trunk/maven-checkstyle-plugin/src/it/settings.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/src/it/settings.xml?rev=686066&r1=686065&r2=686066&view=diff
==============================================================================
--- maven/plugins/trunk/maven-checkstyle-plugin/src/it/settings.xml (original)
+++ maven/plugins/trunk/maven-checkstyle-plugin/src/it/settings.xml Thu Aug 14 15:21:48 2008
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <settings>
   <profiles>
     <profile>
@@ -9,7 +29,7 @@
       <repositories>
         <repository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
@@ -17,11 +37,22 @@
             <enabled>true</enabled>
           </snapshots>
         </repository>
+        <repository>
+          <id>apache.snapshots</id>
+          <name>Apache Snapshot Repository</name>
+          <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+          <releases>
+            <enabled>false</enabled>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
       </repositories>
       <pluginRepositories>
         <pluginRepository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>

Modified: maven/plugins/trunk/maven-clean-plugin/src/it/settings.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-clean-plugin/src/it/settings.xml?rev=686066&r1=686065&r2=686066&view=diff
==============================================================================
--- maven/plugins/trunk/maven-clean-plugin/src/it/settings.xml (original)
+++ maven/plugins/trunk/maven-clean-plugin/src/it/settings.xml Thu Aug 14 15:21:48 2008
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <settings>
   <profiles>
     <profile>
@@ -9,7 +29,7 @@
       <repositories>
         <repository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
@@ -17,11 +37,22 @@
             <enabled>true</enabled>
           </snapshots>
         </repository>
+        <repository>
+          <id>apache.snapshots</id>
+          <name>Apache Snapshot Repository</name>
+          <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+          <releases>
+            <enabled>false</enabled>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
       </repositories>
       <pluginRepositories>
         <pluginRepository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>

Modified: maven/plugins/trunk/maven-compiler-plugin/src/it/settings.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-compiler-plugin/src/it/settings.xml?rev=686066&r1=686065&r2=686066&view=diff
==============================================================================
--- maven/plugins/trunk/maven-compiler-plugin/src/it/settings.xml (original)
+++ maven/plugins/trunk/maven-compiler-plugin/src/it/settings.xml Thu Aug 14 15:21:48 2008
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <settings>
   <profiles>
     <profile>
@@ -9,7 +29,7 @@
       <repositories>
         <repository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
@@ -17,11 +37,22 @@
             <enabled>true</enabled>
           </snapshots>
         </repository>
+        <repository>
+          <id>apache.snapshots</id>
+          <name>Apache Snapshot Repository</name>
+          <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+          <releases>
+            <enabled>false</enabled>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
       </repositories>
       <pluginRepositories>
         <pluginRepository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>

Modified: maven/plugins/trunk/maven-deploy-plugin/src/it/settings.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/it/settings.xml?rev=686066&r1=686065&r2=686066&view=diff
==============================================================================
--- maven/plugins/trunk/maven-deploy-plugin/src/it/settings.xml (original)
+++ maven/plugins/trunk/maven-deploy-plugin/src/it/settings.xml Thu Aug 14 15:21:48 2008
@@ -1,33 +1,64 @@
-<?xml version="1.0"?>
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <settings>
   <profiles>
     <profile>
-      <id>apache</id>
+      <id>it-repo</id>
       <activation>
         <activeByDefault>true</activeByDefault>
-      </activation>      
+      </activation>
       <repositories>
         <repository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
           <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
+        <repository>
+          <id>apache.snapshots</id>
+          <name>Apache Snapshot Repository</name>
+          <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+          <releases>
             <enabled>false</enabled>
-          </snapshots>             
-        </repository>        
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
       </repositories>
       <pluginRepositories>
         <pluginRepository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
           <snapshots>
-            <enabled>false</enabled>
-          </snapshots>          
+            <enabled>true</enabled>
+          </snapshots>
         </pluginRepository>
       </pluginRepositories>
     </profile>

Modified: maven/plugins/trunk/maven-invoker-plugin/src/it/settings.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-invoker-plugin/src/it/settings.xml?rev=686066&r1=686065&r2=686066&view=diff
==============================================================================
--- maven/plugins/trunk/maven-invoker-plugin/src/it/settings.xml (original)
+++ maven/plugins/trunk/maven-invoker-plugin/src/it/settings.xml Thu Aug 14 15:21:48 2008
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <settings>
   <profiles>
     <profile>
@@ -9,7 +29,7 @@
       <repositories>
         <repository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
@@ -17,11 +37,22 @@
             <enabled>true</enabled>
           </snapshots>
         </repository>
+        <repository>
+          <id>apache.snapshots</id>
+          <name>Apache Snapshot Repository</name>
+          <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+          <releases>
+            <enabled>false</enabled>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
       </repositories>
       <pluginRepositories>
         <pluginRepository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>

Modified: maven/plugins/trunk/maven-jar-plugin/src/it/settings.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-jar-plugin/src/it/settings.xml?rev=686066&r1=686065&r2=686066&view=diff
==============================================================================
--- maven/plugins/trunk/maven-jar-plugin/src/it/settings.xml (original)
+++ maven/plugins/trunk/maven-jar-plugin/src/it/settings.xml Thu Aug 14 15:21:48 2008
@@ -1,33 +1,64 @@
-<?xml version="1.0"?>
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <settings>
   <profiles>
     <profile>
-      <id>apache</id>
+      <id>it-repo</id>
       <activation>
         <activeByDefault>true</activeByDefault>
-      </activation>      
+      </activation>
       <repositories>
         <repository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
           <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
+        <repository>
+          <id>apache.snapshots</id>
+          <name>Apache Snapshot Repository</name>
+          <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+          <releases>
             <enabled>false</enabled>
-          </snapshots>             
-        </repository>        
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
       </repositories>
       <pluginRepositories>
         <pluginRepository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
           <snapshots>
-            <enabled>false</enabled>
-          </snapshots>          
+            <enabled>true</enabled>
+          </snapshots>
         </pluginRepository>
       </pluginRepositories>
     </profile>

Modified: maven/plugins/trunk/maven-javadoc-plugin/src/it/settings.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-javadoc-plugin/src/it/settings.xml?rev=686066&r1=686065&r2=686066&view=diff
==============================================================================
--- maven/plugins/trunk/maven-javadoc-plugin/src/it/settings.xml (original)
+++ maven/plugins/trunk/maven-javadoc-plugin/src/it/settings.xml Thu Aug 14 15:21:48 2008
@@ -1,33 +1,64 @@
-<?xml version="1.0"?>
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <settings>
   <profiles>
     <profile>
-      <id>apache</id>
+      <id>it-repo</id>
       <activation>
         <activeByDefault>true</activeByDefault>
-      </activation>      
+      </activation>
       <repositories>
         <repository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
           <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
+        <repository>
+          <id>apache.snapshots</id>
+          <name>Apache Snapshot Repository</name>
+          <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+          <releases>
             <enabled>false</enabled>
-          </snapshots>             
-        </repository>        
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
       </repositories>
       <pluginRepositories>
         <pluginRepository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
           <snapshots>
-            <enabled>false</enabled>
-          </snapshots>          
+            <enabled>true</enabled>
+          </snapshots>
         </pluginRepository>
       </pluginRepositories>
     </profile>

Modified: maven/plugins/trunk/maven-patch-plugin/src/it/settings.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-patch-plugin/src/it/settings.xml?rev=686066&r1=686065&r2=686066&view=diff
==============================================================================
--- maven/plugins/trunk/maven-patch-plugin/src/it/settings.xml (original)
+++ maven/plugins/trunk/maven-patch-plugin/src/it/settings.xml Thu Aug 14 15:21:48 2008
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <settings>
   <profiles>
     <profile>
@@ -9,7 +29,7 @@
       <repositories>
         <repository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
@@ -17,11 +37,22 @@
             <enabled>true</enabled>
           </snapshots>
         </repository>
+        <repository>
+          <id>apache.snapshots</id>
+          <name>Apache Snapshot Repository</name>
+          <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+          <releases>
+            <enabled>false</enabled>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
       </repositories>
       <pluginRepositories>
         <pluginRepository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>

Modified: maven/plugins/trunk/maven-project-info-reports-plugin/src/it/settings.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-project-info-reports-plugin/src/it/settings.xml?rev=686066&r1=686065&r2=686066&view=diff
==============================================================================
--- maven/plugins/trunk/maven-project-info-reports-plugin/src/it/settings.xml (original)
+++ maven/plugins/trunk/maven-project-info-reports-plugin/src/it/settings.xml Thu Aug 14 15:21:48 2008
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <settings>
   <profiles>
     <profile>
@@ -9,7 +29,7 @@
       <repositories>
         <repository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
@@ -17,11 +37,22 @@
             <enabled>true</enabled>
           </snapshots>
         </repository>
+        <repository>
+          <id>apache.snapshots</id>
+          <name>Apache Snapshot Repository</name>
+          <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+          <releases>
+            <enabled>false</enabled>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
       </repositories>
       <pluginRepositories>
         <pluginRepository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>

Modified: maven/plugins/trunk/maven-site-plugin/src/it/settings.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/it/settings.xml?rev=686066&r1=686065&r2=686066&view=diff
==============================================================================
--- maven/plugins/trunk/maven-site-plugin/src/it/settings.xml (original)
+++ maven/plugins/trunk/maven-site-plugin/src/it/settings.xml Thu Aug 14 15:21:48 2008
@@ -1,33 +1,64 @@
-<?xml version="1.0"?>
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <settings>
   <profiles>
     <profile>
-      <id>apache</id>
+      <id>it-repo</id>
       <activation>
         <activeByDefault>true</activeByDefault>
-      </activation>      
+      </activation>
       <repositories>
         <repository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
           <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
+        <repository>
+          <id>apache.snapshots</id>
+          <name>Apache Snapshot Repository</name>
+          <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+          <releases>
             <enabled>false</enabled>
-          </snapshots>             
-        </repository>        
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
       </repositories>
       <pluginRepositories>
         <pluginRepository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
           <snapshots>
-            <enabled>false</enabled>
-          </snapshots>          
+            <enabled>true</enabled>
+          </snapshots>
         </pluginRepository>
       </pluginRepositories>
     </profile>

Modified: maven/plugins/trunk/maven-source-plugin/src/it/settings.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-source-plugin/src/it/settings.xml?rev=686066&r1=686065&r2=686066&view=diff
==============================================================================
--- maven/plugins/trunk/maven-source-plugin/src/it/settings.xml (original)
+++ maven/plugins/trunk/maven-source-plugin/src/it/settings.xml Thu Aug 14 15:21:48 2008
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <settings>
   <profiles>
     <profile>
@@ -9,7 +29,7 @@
       <repositories>
         <repository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
@@ -17,11 +37,22 @@
             <enabled>true</enabled>
           </snapshots>
         </repository>
+        <repository>
+          <id>apache.snapshots</id>
+          <name>Apache Snapshot Repository</name>
+          <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+          <releases>
+            <enabled>false</enabled>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
       </repositories>
       <pluginRepositories>
         <pluginRepository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>

Modified: maven/plugins/trunk/maven-war-plugin/src/it/settings.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-war-plugin/src/it/settings.xml?rev=686066&r1=686065&r2=686066&view=diff
==============================================================================
--- maven/plugins/trunk/maven-war-plugin/src/it/settings.xml (original)
+++ maven/plugins/trunk/maven-war-plugin/src/it/settings.xml Thu Aug 14 15:21:48 2008
@@ -1,33 +1,64 @@
-<?xml version="1.0"?>
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <settings>
   <profiles>
     <profile>
-      <id>apache</id>
+      <id>it-repo</id>
       <activation>
         <activeByDefault>true</activeByDefault>
-      </activation>      
+      </activation>
       <repositories>
         <repository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
           <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
+        <repository>
+          <id>apache.snapshots</id>
+          <name>Apache Snapshot Repository</name>
+          <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+          <releases>
             <enabled>false</enabled>
-          </snapshots>             
-        </repository>        
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
       </repositories>
       <pluginRepositories>
         <pluginRepository>
           <id>local.central</id>
-          <url>file://@localRepository@</url>
+          <url>file:///@localRepository@</url>
           <releases>
             <enabled>true</enabled>
           </releases>
           <snapshots>
-            <enabled>false</enabled>
-          </snapshots>          
+            <enabled>true</enabled>
+          </snapshots>
         </pluginRepository>
       </pluginRepositories>
     </profile>