You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2007/01/11 08:48:33 UTC

svn commit: r495147 [5/16] - in /maven/components/branches/maven-2.0.x: ./ bootstrap/bootstrap-installer/ bootstrap/bootstrap-mini/ integration-tests/maven-core-it-plugin/ integration-tests/maven-core-it-plugin/src/main/resources/META-INF/maven/ integr...

Modified: maven/components/branches/maven-2.0.x/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/Restriction.java
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/Restriction.java?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/Restriction.java (original)
+++ maven/components/branches/maven-2.0.x/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/Restriction.java Wed Jan 10 23:47:53 2007
@@ -1,19 +1,22 @@
 package org.apache.maven.artifact.versioning;
 
 /*
- * Copyright 2001-2005 The Apache Software Foundation.
+ * 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
  *
- * Licensed 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
  *
- *      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.
+ * 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.
  */
 
 /**

Modified: maven/components/branches/maven-2.0.x/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java (original)
+++ maven/components/branches/maven-2.0.x/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java Wed Jan 10 23:47:53 2007
@@ -1,19 +1,22 @@
 package org.apache.maven.artifact.versioning;
 
 /*
- * Copyright 2001-2005 The Apache Software Foundation.
+ * 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
  *
- * Licensed 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
  *
- *      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.
+ * 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.
  */
 
 import org.apache.maven.artifact.Artifact;

Modified: maven/components/branches/maven-2.0.x/maven-artifact/src/main/resources/META-INF/plexus/components.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-artifact/src/main/resources/META-INF/plexus/components.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-artifact/src/main/resources/META-INF/plexus/components.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-artifact/src/main/resources/META-INF/plexus/components.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <component-set>
   <components>
     <component>

Modified: maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/DefaultArtifactTest.java
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/DefaultArtifactTest.java?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/DefaultArtifactTest.java (original)
+++ maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/DefaultArtifactTest.java Wed Jan 10 23:47:53 2007
@@ -1,19 +1,22 @@
 package org.apache.maven.artifact;
 
 /*
- * Copyright 2001-2006 The Apache Software Foundation.
+ * 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
  *
- * Licensed 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
  *
- *      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.
+ * 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.
  */
 
 import junit.framework.TestCase;

Modified: maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/factory/DefaultArtifactFactoryTest.java
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/factory/DefaultArtifactFactoryTest.java?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/factory/DefaultArtifactFactoryTest.java (original)
+++ maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/factory/DefaultArtifactFactoryTest.java Wed Jan 10 23:47:53 2007
@@ -1,5 +1,24 @@
 package org.apache.maven.artifact.factory;
 
+/*
+ * 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.
+ */
+
 import org.apache.maven.artifact.Artifact;
 import org.apache.maven.artifact.versioning.VersionRange;
 import org.codehaus.plexus.PlexusTestCase;

Modified: maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerMock.java
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerMock.java?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerMock.java (original)
+++ maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerMock.java Wed Jan 10 23:47:53 2007
@@ -1,19 +1,22 @@
 package org.apache.maven.artifact.handler;
 
 /*
- * Copyright 2001-2006 The Apache Software Foundation.
+ * 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
  *
- * Licensed 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
  *
- *      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.
+ * 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.
  */
 
 public class ArtifactHandlerMock

Modified: maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/resolver/DefaultArtifactCollectorTest.java
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/resolver/DefaultArtifactCollectorTest.java?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/resolver/DefaultArtifactCollectorTest.java (original)
+++ maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/resolver/DefaultArtifactCollectorTest.java Wed Jan 10 23:47:53 2007
@@ -1,19 +1,22 @@
 package org.apache.maven.artifact.resolver;
 
 /*
- * Copyright 2001-2005 The Apache Software Foundation.
+ * 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
  *
- * Licensed 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
  *
- *      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.
+ * 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.
  */
 
 import org.apache.maven.artifact.Artifact;

Modified: maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java (original)
+++ maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java Wed Jan 10 23:47:53 2007
@@ -1,19 +1,22 @@
 package org.apache.maven.artifact.versioning;
 
 /*
- * Copyright 2001-2005 The Apache Software Foundation.
+ * 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
  *
- * Licensed 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
  *
- *      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.
+ * 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.
  */
 
 import junit.framework.TestCase;

Modified: maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/VersionRangeTest.java
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/VersionRangeTest.java?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/VersionRangeTest.java (original)
+++ maven/components/branches/maven-2.0.x/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/VersionRangeTest.java Wed Jan 10 23:47:53 2007
@@ -1,19 +1,22 @@
 package org.apache.maven.artifact.versioning;
 
 /*
- * Copyright 2001-2005 The Apache Software Foundation.
+ * 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
  *
- * Licensed 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
  *
- *      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.
+ * 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.
  */
 
 import junit.framework.TestCase;

Modified: maven/components/branches/maven-2.0.x/maven-core-it-verifier/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it-verifier/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it-verifier/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it-verifier/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,20 +1,23 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
 <!--
-  ~ Copyright 2005-2006 The Apache Software Foundation.
-  ~
-  ~ Licensed 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.
-  -->
+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.
+-->
 
 <project 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/maven-v4_0_0.xsd">

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0000/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0000/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0000/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0000/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0001/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0001/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0001/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0001/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0001/src/main/resources/it0001.properties
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0001/src/main/resources/it0001.properties?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0001/src/main/resources/it0001.properties (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0001/src/main/resources/it0001.properties Wed Jan 10 23:47:53 2007
@@ -1 +1,18 @@
+# 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.
+
 name = jason

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0002/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0002/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0002/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0002/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0002/src/main/resources/it0001.properties
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0002/src/main/resources/it0001.properties?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0002/src/main/resources/it0001.properties (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0002/src/main/resources/it0001.properties Wed Jan 10 23:47:53 2007
@@ -1 +1,18 @@
+# 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.
+
 name = jason

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0002/src/main/resources/it0002.properties
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0002/src/main/resources/it0002.properties?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0002/src/main/resources/it0002.properties (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0002/src/main/resources/it0002.properties Wed Jan 10 23:47:53 2007
@@ -1 +1,18 @@
+# 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.
+
 name = jason

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0003/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0003/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0003/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0003/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0003/src/main/resources/it0003.properties
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0003/src/main/resources/it0003.properties?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0003/src/main/resources/it0003.properties (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0003/src/main/resources/it0003.properties Wed Jan 10 23:47:53 2007
@@ -1 +1,18 @@
+# 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.
+
 name = jason

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0004/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0004/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0004/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0004/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0005/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0005/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0005/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0005/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0006/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0006/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0006/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0006/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0006/src/test/verifier/verifications.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0006/src/test/verifier/verifications.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0006/src/test/verifier/verifications.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0006/src/test/verifier/verifications.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <verifications>
   <files>
     <file>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0007/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0007/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0007/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0007/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <parent>
     <artifactId>maven-plugin-parent</artifactId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0007/src/main/resources/it0007.properties
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0007/src/main/resources/it0007.properties?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0007/src/main/resources/it0007.properties (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0007/src/main/resources/it0007.properties Wed Jan 10 23:47:53 2007
@@ -1 +1,18 @@
+# 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.
+
 name = jason

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0008/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0008/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0008/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0008/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0009/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0009/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0009/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0009/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0010/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0010/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0010/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0010/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0011/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0011/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0011/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0011/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0012/child-project/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0012/child-project/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0012/child-project/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0012/child-project/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0012/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0012/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0012/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0012/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0013/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0013/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0013/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0013/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <project>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven.plugins</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0014/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0014/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0014/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0014/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0016/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0016/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0016/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0016/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0016/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0016/src/main/webapp/WEB-INF/web.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0016/src/main/webapp/WEB-INF/web.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0016/src/main/webapp/WEB-INF/web.xml Wed Jan 10 23:47:53 2007
@@ -1,4 +1,23 @@
 <?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.
+-->
+
 <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
 
 <web-app >

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0016/src/main/webapp/index.html
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0016/src/main/webapp/index.html?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0016/src/main/webapp/index.html (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0016/src/main/webapp/index.html Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <html>
   <body>
     Hello World

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0017/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0017/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0017/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0017/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0017/src/main/resources/META-INF/ejb-jar.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0017/src/main/resources/META-INF/ejb-jar.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0017/src/main/resources/META-INF/ejb-jar.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0017/src/main/resources/META-INF/ejb-jar.xml Wed Jan 10 23:47:53 2007
@@ -1,4 +1,23 @@
 <?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.
+-->
+
 <ejb-jar>
   <enterprise-beans>
     <session>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0018/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0018/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0018/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0018/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0019/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0019/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0019/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0019/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0020/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0020/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0020/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0020/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <project>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven.plugins</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0021/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0021/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0021/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0021/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <project>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven.plugins</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0021/system.properties
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0021/system.properties?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0021/system.properties (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0021/system.properties Wed Jan 10 23:47:53 2007
@@ -1 +1,18 @@
+# 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.
+
 includeProfile=true

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0022/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0022/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0022/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0022/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0022/profiles.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0022/profiles.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0022/profiles.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0022/profiles.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <profilesXml>
   <profiles>
     <profile>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0022/system.properties
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0022/system.properties?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0022/system.properties (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0022/system.properties Wed Jan 10 23:47:53 2007
@@ -1 +1,18 @@
+# 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.
+
 includeProfile=true

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0023/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0023/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0023/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0023/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0023/settings.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0023/settings.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0023/settings.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0023/settings.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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>
   <activeProfiles>
     <activeProfile>test-profile</activeProfile>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0023/system.properties
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0023/system.properties?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0023/system.properties (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0023/system.properties Wed Jan 10 23:47:53 2007
@@ -1 +1,18 @@
+# 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.
+
 org.apache.maven.user-settings=settings.xml

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0024/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0024/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0024/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0024/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0025/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0025/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0025/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0025/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven.</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0026/global-settings.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0026/global-settings.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0026/global-settings.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0026/global-settings.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0026/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0026/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0026/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0026/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven.</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0026/system.properties
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0026/system.properties?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0026/system.properties (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0026/system.properties Wed Jan 10 23:47:53 2007
@@ -1,2 +1,19 @@
+# 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.
+
 org.apache.maven.user-settings=user-settings.xml
 org.apache.maven.global-settings=global-settings.xml

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0026/user-settings.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0026/user-settings.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0026/user-settings.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0026/user-settings.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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>
   <activeProfiles>
     <activeProfile>test-profile</activeProfile>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0027/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0027/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0027/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0027/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0028/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0028/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0028/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0028/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0029/child-project/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0029/child-project/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0029/child-project/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0029/child-project/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <parent>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0029/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0029/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0029/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0029/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <project>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven.it</groupId>

Modified: maven/components/branches/maven-2.0.x/maven-core-it/it0030/child-hierarchy/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core-it/it0030/child-hierarchy/pom.xml?view=diff&rev=495147&r1=495146&r2=495147
==============================================================================
--- maven/components/branches/maven-2.0.x/maven-core-it/it0030/child-hierarchy/pom.xml (original)
+++ maven/components/branches/maven-2.0.x/maven-core-it/it0030/child-hierarchy/pom.xml Wed Jan 10 23:47:53 2007
@@ -1,3 +1,22 @@
+<!--
+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.
+-->
+
 <model>
   <modelVersion>4.0.0</modelVersion>
   <parent>