You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2014/10/07 19:28:37 UTC

svn commit: r1629933 - in /maven/plugins/trunk/maven-repository-plugin: ./ src/it/bootstrap/ src/it/bundle-create-alt-pom/src/main/java/ src/it/bundle-create-no-scm/src/main/java/ src/it/bundle-create/src/main/java/ src/it/it-parent/ src/test/resources...

Author: khmarbaise
Date: Tue Oct  7 17:28:36 2014
New Revision: 1629933

URL: http://svn.apache.org/r1629933
Log:
[MREPOSITORY-35]
 - Fixed RAT report issues. Now 0 violations.

Modified:
    maven/plugins/trunk/maven-repository-plugin/pom.xml
    maven/plugins/trunk/maven-repository-plugin/src/it/bootstrap/pom.xml
    maven/plugins/trunk/maven-repository-plugin/src/it/bundle-create-alt-pom/src/main/java/Main.java
    maven/plugins/trunk/maven-repository-plugin/src/it/bundle-create-no-scm/src/main/java/Main.java
    maven/plugins/trunk/maven-repository-plugin/src/it/bundle-create/src/main/java/Main.java
    maven/plugins/trunk/maven-repository-plugin/src/it/it-parent/pom.xml
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/org/apache/maven/plugins/repository/BundleCreateMojoTest.xml
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/org/apache/maven/plugins/repository/BundlePackMojoTest.xml
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/bundle-pack-parent/pom.xml
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/bundle-pack/pom.xml
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/default-configuration/def/configuration/App.java
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/default-configuration/pom.xml
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadoc-sources/no/javadoc/sources/App.java
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadoc-sources/pom.xml
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadocjar/no/javadocjar/App.java
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadocjar/pom.xml
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-license-file/no/license/file/App.java
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-license-file/pom.xml
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-project-name/no/project/name/App.java
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-project-name/pom.xml
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-scm/no/scm/App.java
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-scm/pom.xml
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-sourcesjar/no/sourcesjar/App.java
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-sourcesjar/pom.xml
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/pom-only/def/configuration/App.java
    maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/pom-only/pom.xml

Modified: maven/plugins/trunk/maven-repository-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/pom.xml?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-repository-plugin/pom.xml Tue Oct  7 17:28:36 2014
@@ -179,6 +179,18 @@ under the License.
             </excludes>
           </configuration>
         </plugin>
+        <plugin>
+          <groupId>org.apache.rat</groupId>
+          <artifactId>apache-rat-plugin</artifactId>
+          <configuration>
+            <excludes>
+              <exclude>src/it/bootstrap/**</exclude>
+              <exclude>src/it/bundle-pack/placeholder.txt</exclude>
+              <exclude>src/test/resources/repo/testgroup/testartifact/1.0/testartifact-1.0.pom</exclude>
+              <exclude>src/test/resources/repo/testgroup/testparent/1.0/testparent-1.0.pom</exclude>
+            </excludes>
+          </configuration>
+        </plugin>
       </plugins>
     </pluginManagement>
 

Modified: maven/plugins/trunk/maven-repository-plugin/src/it/bootstrap/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/it/bootstrap/pom.xml?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/it/bootstrap/pom.xml (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/it/bootstrap/pom.xml Tue Oct  7 17:28:36 2014
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <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">
   <modelVersion>4.0.0</modelVersion>
   
@@ -16,4 +36,4 @@
     <module>bundle-pack-target</module>
     <module>bundle-pack-target-no-scm</module>
   </modules>
-</project>
\ No newline at end of file
+</project>

Modified: maven/plugins/trunk/maven-repository-plugin/src/it/bundle-create-alt-pom/src/main/java/Main.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/it/bundle-create-alt-pom/src/main/java/Main.java?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/it/bundle-create-alt-pom/src/main/java/Main.java (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/it/bundle-create-alt-pom/src/main/java/Main.java Tue Oct  7 17:28:36 2014
@@ -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.
+ */
+
 /**
  * Appliation entry point.
  */

Modified: maven/plugins/trunk/maven-repository-plugin/src/it/bundle-create-no-scm/src/main/java/Main.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/it/bundle-create-no-scm/src/main/java/Main.java?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/it/bundle-create-no-scm/src/main/java/Main.java (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/it/bundle-create-no-scm/src/main/java/Main.java Tue Oct  7 17:28:36 2014
@@ -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.
+ */
+
 /**
  * Appliation entry point.
  */

Modified: maven/plugins/trunk/maven-repository-plugin/src/it/bundle-create/src/main/java/Main.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/it/bundle-create/src/main/java/Main.java?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/it/bundle-create/src/main/java/Main.java (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/it/bundle-create/src/main/java/Main.java Tue Oct  7 17:28:36 2014
@@ -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.
+ */
+
 /**
  * Appliation entry point.
  */

Modified: maven/plugins/trunk/maven-repository-plugin/src/it/it-parent/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/it/it-parent/pom.xml?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/it/it-parent/pom.xml (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/it/it-parent/pom.xml Tue Oct  7 17:28:36 2014
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <project
   xmlns="http://maven.apache.org/POM/4.0.0"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
@@ -88,4 +108,4 @@
       </plugins>
     </pluginManagement>
   </build>
-</project>
\ No newline at end of file
+</project>

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/org/apache/maven/plugins/repository/BundleCreateMojoTest.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/org/apache/maven/plugins/repository/BundleCreateMojoTest.xml?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/org/apache/maven/plugins/repository/BundleCreateMojoTest.xml (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/org/apache/maven/plugins/repository/BundleCreateMojoTest.xml Tue Oct  7 17:28:36 2014
@@ -1,3 +1,23 @@
+<?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.
+-->
+
 <component-set>
   <components>
     <component>
@@ -7,4 +27,4 @@
       <instantiation-strategy>singleton</instantiation-strategy>
     </component>
   </components>
-</component-set>
\ No newline at end of file
+</component-set>

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/org/apache/maven/plugins/repository/BundlePackMojoTest.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/org/apache/maven/plugins/repository/BundlePackMojoTest.xml?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/org/apache/maven/plugins/repository/BundlePackMojoTest.xml (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/org/apache/maven/plugins/repository/BundlePackMojoTest.xml Tue Oct  7 17:28:36 2014
@@ -1,3 +1,23 @@
+<?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.
+-->
+
 <component-set>
   <components>
     <component>
@@ -6,4 +26,4 @@
       <implementation>org.apache.maven.plugins.repository.testutil.TestInputHandler</implementation>
     </component>
   </components>
-</component-set>
\ No newline at end of file
+</component-set>

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/bundle-pack-parent/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/bundle-pack-parent/pom.xml?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/bundle-pack-parent/pom.xml (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/bundle-pack-parent/pom.xml Tue Oct  7 17:28:36 2014
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <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">
   <modelVersion>4.0.0</modelVersion>

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/bundle-pack/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/bundle-pack/pom.xml?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/bundle-pack/pom.xml (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/bundle-pack/pom.xml Tue Oct  7 17:28:36 2014
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <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">
   <modelVersion>4.0.0</modelVersion>

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/default-configuration/def/configuration/App.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/default-configuration/def/configuration/App.java?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/default-configuration/def/configuration/App.java (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/default-configuration/def/configuration/App.java Tue Oct  7 17:28:36 2014
@@ -1,9 +1,29 @@
 package def.configuration;
 
+/*
+ * 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.
+ */
+
+
 public class App
 {
     public static void main( String[] args )
     {
         System.out.println( "Sample Application." );
     }
-}
\ No newline at end of file
+}

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/default-configuration/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/default-configuration/pom.xml?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/default-configuration/pom.xml (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/default-configuration/pom.xml Tue Oct  7 17:28:36 2014
@@ -1,3 +1,23 @@
+<?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.
+-->
+
 <project>
   <modelVersion>4.0.0</modelVersion>
   <groupId>def.configuration</groupId>

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadoc-sources/no/javadoc/sources/App.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadoc-sources/no/javadoc/sources/App.java?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadoc-sources/no/javadoc/sources/App.java (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadoc-sources/no/javadoc/sources/App.java Tue Oct  7 17:28:36 2014
@@ -1,9 +1,29 @@
 package no.javadoc.sources;
 
+/*
+ * 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.
+ */
+
+
 public class App
 {
     public static void main( String[] args )
     {
         System.out.println( "Sample Application." );
     }
-}
\ No newline at end of file
+}

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadoc-sources/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadoc-sources/pom.xml?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadoc-sources/pom.xml (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadoc-sources/pom.xml Tue Oct  7 17:28:36 2014
@@ -1,3 +1,23 @@
+<?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.
+-->
+
 <project>
   <modelVersion>4.0.0</modelVersion>
   <groupId>no.javadoc.sources</groupId>

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadocjar/no/javadocjar/App.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadocjar/no/javadocjar/App.java?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadocjar/no/javadocjar/App.java (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadocjar/no/javadocjar/App.java Tue Oct  7 17:28:36 2014
@@ -1,9 +1,29 @@
 package no.javadocjar;
 
+/*
+ * 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.
+ */
+
+
 public class App
 {
     public static void main( String[] args )
     {
         System.out.println( "Sample Application." );
     }
-}
\ No newline at end of file
+}

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadocjar/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadocjar/pom.xml?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadocjar/pom.xml (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-javadocjar/pom.xml Tue Oct  7 17:28:36 2014
@@ -1,3 +1,23 @@
+<?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.
+-->
+
 <project>
   <modelVersion>4.0.0</modelVersion>
   <groupId>no.javadocjar</groupId>

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-license-file/no/license/file/App.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-license-file/no/license/file/App.java?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-license-file/no/license/file/App.java (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-license-file/no/license/file/App.java Tue Oct  7 17:28:36 2014
@@ -1,9 +1,29 @@
 package no.license.file;
 
+/*
+ * 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.
+ */
+
+
 public class App
 {
     public static void main( String[] args )
     {
         System.out.println( "Sample Application." );
     }
-}
\ No newline at end of file
+}

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-license-file/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-license-file/pom.xml?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-license-file/pom.xml (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-license-file/pom.xml Tue Oct  7 17:28:36 2014
@@ -1,3 +1,23 @@
+<?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.
+-->
+
 <project>
   <modelVersion>4.0.0</modelVersion>
   <groupId>no.license.file</groupId>

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-project-name/no/project/name/App.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-project-name/no/project/name/App.java?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-project-name/no/project/name/App.java (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-project-name/no/project/name/App.java Tue Oct  7 17:28:36 2014
@@ -1,9 +1,29 @@
 package no.project.name;
 
+/*
+ * 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.
+ */
+
+
 public class App
 {
     public static void main( String[] args )
     {
         System.out.println( "Sample Application." );
     }
-}
\ No newline at end of file
+}

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-project-name/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-project-name/pom.xml?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-project-name/pom.xml (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-project-name/pom.xml Tue Oct  7 17:28:36 2014
@@ -1,3 +1,23 @@
+<?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.
+-->
+
 <project>
   <modelVersion>4.0.0</modelVersion>
   <groupId>no.project.name</groupId>

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-scm/no/scm/App.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-scm/no/scm/App.java?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-scm/no/scm/App.java (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-scm/no/scm/App.java Tue Oct  7 17:28:36 2014
@@ -1,9 +1,29 @@
 package no.scm;
 
+/*
+ * 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.
+ */
+
+
 public class App
 {
     public static void main( String[] args )
     {
         System.out.println( "Sample Application." );
     }
-}
\ No newline at end of file
+}

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-scm/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-scm/pom.xml?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-scm/pom.xml (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-scm/pom.xml Tue Oct  7 17:28:36 2014
@@ -1,3 +1,23 @@
+<?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.
+-->
+
 <project>
   <modelVersion>4.0.0</modelVersion>
   <groupId>no.scm</groupId>

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-sourcesjar/no/sourcesjar/App.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-sourcesjar/no/sourcesjar/App.java?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-sourcesjar/no/sourcesjar/App.java (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-sourcesjar/no/sourcesjar/App.java Tue Oct  7 17:28:36 2014
@@ -1,9 +1,29 @@
 package no.sourcesjar;
 
+/*
+ * 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.
+ */
+
+
 public class App
 {
     public static void main( String[] args )
     {
         System.out.println( "Sample Application." );
     }
-}
\ No newline at end of file
+}

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-sourcesjar/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-sourcesjar/pom.xml?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-sourcesjar/pom.xml (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/no-sourcesjar/pom.xml Tue Oct  7 17:28:36 2014
@@ -1,3 +1,23 @@
+<?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.
+-->
+
 <project>
   <modelVersion>4.0.0</modelVersion>
   <groupId>no.sourcesjar</groupId>

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/pom-only/def/configuration/App.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/pom-only/def/configuration/App.java?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/pom-only/def/configuration/App.java (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/pom-only/def/configuration/App.java Tue Oct  7 17:28:36 2014
@@ -1,9 +1,29 @@
 package def.configuration;
 
+/*
+ * 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.
+ */
+
+
 public class App
 {
     public static void main( String[] args )
     {
         System.out.println( "Sample Application." );
     }
-}
\ No newline at end of file
+}

Modified: maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/pom-only/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/pom-only/pom.xml?rev=1629933&r1=1629932&r2=1629933&view=diff
==============================================================================
--- maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/pom-only/pom.xml (original)
+++ maven/plugins/trunk/maven-repository-plugin/src/test/resources/unit/pom-only/pom.xml Tue Oct  7 17:28:36 2014
@@ -1,3 +1,23 @@
+<?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.
+-->
+
 <project>
   <modelVersion>4.0.0</modelVersion>
   <groupId>def.configuration</groupId>