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/02/28 23:52:03 UTC

svn commit: r513035 - in /maven/components/trunk/maven-plugin-registry: ./ src/main/java/org/apache/maven/plugin/registry/ src/main/resources/META-INF/plexus/

Author: jvanzyl
Date: Wed Feb 28 14:52:02 2007
New Revision: 513035

URL: http://svn.apache.org/viewvc?view=rev&rev=513035
Log:
updating license headers

Modified:
    maven/components/trunk/maven-plugin-registry/plugin-registry.mdo
    maven/components/trunk/maven-plugin-registry/pom.xml
    maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/DefaultPluginRegistryBuilder.java
    maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/MavenPluginRegistryBuilder.java
    maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/PluginRegistryUtils.java
    maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/RuntimeInfo.java
    maven/components/trunk/maven-plugin-registry/src/main/resources/META-INF/plexus/components.xml

Modified: maven/components/trunk/maven-plugin-registry/plugin-registry.mdo
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-plugin-registry/plugin-registry.mdo?view=diff&rev=513035&r1=513034&r2=513035
==============================================================================
--- maven/components/trunk/maven-plugin-registry/plugin-registry.mdo (original)
+++ maven/components/trunk/maven-plugin-registry/plugin-registry.mdo Wed Feb 28 14:52:02 2007
@@ -1,5 +1,24 @@
 <?xml version="1.0"?>
 
+<!--
+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>
   <id>plugin-registry</id>
   <name>PluginRegistry</name>

Modified: maven/components/trunk/maven-plugin-registry/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-plugin-registry/pom.xml?view=diff&rev=513035&r1=513034&r2=513035
==============================================================================
--- maven/components/trunk/maven-plugin-registry/pom.xml (original)
+++ maven/components/trunk/maven-plugin-registry/pom.xml Wed Feb 28 14:52:02 2007
@@ -1,4 +1,23 @@
-<?xml version="1.0" encoding="UTF-8"?><project>
+<?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.
+-->
+
+<project>
   <parent>
     <artifactId>maven</artifactId>
     <groupId>org.apache.maven</groupId>

Modified: maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/DefaultPluginRegistryBuilder.java
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/DefaultPluginRegistryBuilder.java?view=diff&rev=513035&r1=513034&r2=513035
==============================================================================
--- maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/DefaultPluginRegistryBuilder.java (original)
+++ maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/DefaultPluginRegistryBuilder.java Wed Feb 28 14:52:02 2007
@@ -1,5 +1,24 @@
 package org.apache.maven.plugin.registry;
 
+/*
+ * 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.plugin.registry.io.xpp3.PluginRegistryXpp3Reader;
 import org.codehaus.plexus.logging.AbstractLogEnabled;
 import org.codehaus.plexus.personality.plexus.lifecycle.phase.Initializable;
@@ -10,22 +29,6 @@
 import java.io.File;
 import java.io.FileReader;
 import java.io.IOException;
-
-/*
- * Copyright 2001-2005 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.
- */
 
 public class DefaultPluginRegistryBuilder
     extends AbstractLogEnabled

Modified: maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/MavenPluginRegistryBuilder.java
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/MavenPluginRegistryBuilder.java?view=diff&rev=513035&r1=513034&r2=513035
==============================================================================
--- maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/MavenPluginRegistryBuilder.java (original)
+++ maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/MavenPluginRegistryBuilder.java Wed Feb 28 14:52:02 2007
@@ -1,24 +1,27 @@
 package org.apache.maven.plugin.registry;
 
-import org.codehaus.plexus.util.xml.pull.XmlPullParserException;
-
-import java.io.IOException;
-
 /*
- * Copyright 2001-2005 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
+ * 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
+ *  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.codehaus.plexus.util.xml.pull.XmlPullParserException;
+
+import java.io.IOException;
 
 public interface MavenPluginRegistryBuilder
 {

Modified: maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/PluginRegistryUtils.java
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/PluginRegistryUtils.java?view=diff&rev=513035&r1=513034&r2=513035
==============================================================================
--- maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/PluginRegistryUtils.java (original)
+++ maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/PluginRegistryUtils.java Wed Feb 28 14:52:02 2007
@@ -1,26 +1,29 @@
 package org.apache.maven.plugin.registry;
 
+/*
+ * 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 java.util.ArrayList;
 import java.util.Collections;
 import java.util.Iterator;
 import java.util.List;
 import java.util.Map;
-
-/*
- * Copyright 2001-2005 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.
- */
 
 public final class PluginRegistryUtils
 {

Modified: maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/RuntimeInfo.java
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/RuntimeInfo.java?view=diff&rev=513035&r1=513034&r2=513035
==============================================================================
--- maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/RuntimeInfo.java (original)
+++ maven/components/trunk/maven-plugin-registry/src/main/java/org/apache/maven/plugin/registry/RuntimeInfo.java Wed Feb 28 14:52:02 2007
@@ -1,22 +1,25 @@
 package org.apache.maven.plugin.registry;
 
-import java.io.File;
-
 /*
- * Copyright 2001-2005 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
+ * 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
+ *  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 java.io.File;
 
 public class RuntimeInfo
 {

Modified: maven/components/trunk/maven-plugin-registry/src/main/resources/META-INF/plexus/components.xml
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-plugin-registry/src/main/resources/META-INF/plexus/components.xml?view=diff&rev=513035&r1=513034&r2=513035
==============================================================================
--- maven/components/trunk/maven-plugin-registry/src/main/resources/META-INF/plexus/components.xml (original)
+++ maven/components/trunk/maven-plugin-registry/src/main/resources/META-INF/plexus/components.xml Wed Feb 28 14:52:02 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>