You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by de...@apache.org on 2007/07/20 23:56:26 UTC

svn commit: r558165 - in /maven/sandbox/trunk/plugins/maven-swizzle-plugin: ./ src/main/java/org/apache/maven/plugin/swizzle/ src/site/ src/site/apt/ src/site/apt/examples/ src/site/fml/ src/test/java/org/apache/maven/plugin/swizzle/ src/test/resources...

Author: dennisl
Date: Fri Jul 20 14:56:24 2007
New Revision: 558165

URL: http://svn.apache.org/viewvc?view=rev&rev=558165
Log:
o Apply the new license headers.

Modified:
    maven/sandbox/trunk/plugins/maven-swizzle-plugin/pom.xml
    maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/main/java/org/apache/maven/plugin/swizzle/ReportMojo.java
    maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-custom-report.apt
    maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-release-report.apt
    maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-resolved-issues-report.apt
    maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-votes-report.apt
    maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/index.apt
    maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/usage.apt
    maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/fml/faq.fml
    maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/site.xml
    maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/java/org/apache/maven/plugin/swizzle/ReportMojoTest.java
    maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/blank-output-file-configuration-test.xml
    maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/blank-template-configuration-test.xml
    maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/custom-template-configuration-test.xml
    maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/release-configuration-test.xml
    maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/resolved-issues-configuration-test.xml
    maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/simple.xml
    maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/votes-configuration-test.xml

Modified: maven/sandbox/trunk/plugins/maven-swizzle-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-swizzle-plugin/pom.xml?view=diff&rev=558165&r1=558164&r2=558165
==============================================================================
--- maven/sandbox/trunk/plugins/maven-swizzle-plugin/pom.xml (original)
+++ maven/sandbox/trunk/plugins/maven-swizzle-plugin/pom.xml Fri Jul 20 14:56:24 2007
@@ -1,7 +1,5 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
 <!--
-
-Copyright 2006
-
 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
@@ -10,7 +8,7 @@
 "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
@@ -19,7 +17,6 @@
 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">
   <parent>

Modified: maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/main/java/org/apache/maven/plugin/swizzle/ReportMojo.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/main/java/org/apache/maven/plugin/swizzle/ReportMojo.java?view=diff&rev=558165&r1=558164&r2=558165
==============================================================================
--- maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/main/java/org/apache/maven/plugin/swizzle/ReportMojo.java (original)
+++ maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/main/java/org/apache/maven/plugin/swizzle/ReportMojo.java Fri Jul 20 14:56:24 2007
@@ -1,19 +1,22 @@
 package org.apache.maven.plugin.swizzle;
 
 /*
- * Copyright 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 org.apache.maven.plugin.AbstractMojo;

Modified: maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-custom-report.apt
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-custom-report.apt?view=diff&rev=558165&r1=558164&r2=558165
==============================================================================
--- maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-custom-report.apt (original)
+++ maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-custom-report.apt Fri Jul 20 14:56:24 2007
@@ -6,19 +6,22 @@
  09 December 2006
  ------
 
-~~ Copyright 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.
 
 ~~ NOTE: For help with the syntax of this file, see:
 ~~ http://maven.apache.org/guides/mini/guide-apt-format.html

Modified: maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-release-report.apt
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-release-report.apt?view=diff&rev=558165&r1=558164&r2=558165
==============================================================================
--- maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-release-report.apt (original)
+++ maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-release-report.apt Fri Jul 20 14:56:24 2007
@@ -6,19 +6,22 @@
  09 December 2006
  ------
 
-~~ Copyright 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.
 
 ~~ NOTE: For help with the syntax of this file, see:
 ~~ http://maven.apache.org/guides/mini/guide-apt-format.html

Modified: maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-resolved-issues-report.apt
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-resolved-issues-report.apt?view=diff&rev=558165&r1=558164&r2=558165
==============================================================================
--- maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-resolved-issues-report.apt (original)
+++ maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-resolved-issues-report.apt Fri Jul 20 14:56:24 2007
@@ -6,19 +6,22 @@
  09 December 2006
  ------
 
-~~ Copyright 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.
 
 ~~ NOTE: For help with the syntax of this file, see:
 ~~ http://maven.apache.org/guides/mini/guide-apt-format.html

Modified: maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-votes-report.apt
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-votes-report.apt?view=diff&rev=558165&r1=558164&r2=558165
==============================================================================
--- maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-votes-report.apt (original)
+++ maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/examples/generating-votes-report.apt Fri Jul 20 14:56:24 2007
@@ -6,19 +6,22 @@
  09 December 2006
  ------
 
-~~ Copyright 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.
 
 ~~ NOTE: For help with the syntax of this file, see:
 ~~ http://maven.apache.org/guides/mini/guide-apt-format.html

Modified: maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/index.apt?view=diff&rev=558165&r1=558164&r2=558165
==============================================================================
--- maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/index.apt (original)
+++ maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/index.apt Fri Jul 20 14:56:24 2007
@@ -6,19 +6,22 @@
  09 December 2006
  ------
 
-~~ Copyright 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.
 
 ~~ NOTE: For help with the syntax of this file, see:
 ~~ http://maven.apache.org/guides/mini/guide-apt-format.html

Modified: maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/usage.apt
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/usage.apt?view=diff&rev=558165&r1=558164&r2=558165
==============================================================================
--- maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/usage.apt (original)
+++ maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/apt/usage.apt Fri Jul 20 14:56:24 2007
@@ -6,19 +6,22 @@
  09 December 2006
  ------
 
-~~ Copyright 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.
 
 ~~ NOTE: For help with the syntax of this file, see:
 ~~ http://maven.apache.org/guides/mini/guide-apt-format.html

Modified: maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/fml/faq.fml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/fml/faq.fml?view=diff&rev=558165&r1=558164&r2=558165
==============================================================================
--- maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/fml/faq.fml (original)
+++ maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/fml/faq.fml Fri Jul 20 14:56:24 2007
@@ -9,7 +9,7 @@
 "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

Modified: maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/site.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/site.xml?view=diff&rev=558165&r1=558164&r2=558165
==============================================================================
--- maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/site.xml (original)
+++ maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/site/site.xml Fri Jul 20 14:56:24 2007
@@ -1,8 +1,6 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 
 <!--
-Copyright 2006 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
@@ -11,7 +9,7 @@
 "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

Modified: maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/java/org/apache/maven/plugin/swizzle/ReportMojoTest.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/java/org/apache/maven/plugin/swizzle/ReportMojoTest.java?view=diff&rev=558165&r1=558164&r2=558165
==============================================================================
--- maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/java/org/apache/maven/plugin/swizzle/ReportMojoTest.java (original)
+++ maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/java/org/apache/maven/plugin/swizzle/ReportMojoTest.java Fri Jul 20 14:56:24 2007
@@ -1,21 +1,23 @@
-/**
- *
- * Copyright 2006
- *
- *  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
+package org.apache.maven.plugin.swizzle;
+
+/*
+ * 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.
  */
-
-package org.apache.maven.plugin.swizzle;
 
 import org.apache.maven.plugin.testing.AbstractMojoTestCase;
 import org.apache.maven.plugin.MojoExecutionException;

Modified: maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/blank-output-file-configuration-test.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/blank-output-file-configuration-test.xml?view=diff&rev=558165&r1=558164&r2=558165
==============================================================================
--- maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/blank-output-file-configuration-test.xml (original)
+++ maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/blank-output-file-configuration-test.xml Fri Jul 20 14:56:24 2007
@@ -1,7 +1,4 @@
 <!--
-
-Copyright 2006
-
 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
@@ -10,7 +7,7 @@
 "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

Modified: maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/blank-template-configuration-test.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/blank-template-configuration-test.xml?view=diff&rev=558165&r1=558164&r2=558165
==============================================================================
--- maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/blank-template-configuration-test.xml (original)
+++ maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/blank-template-configuration-test.xml Fri Jul 20 14:56:24 2007
@@ -1,7 +1,4 @@
 <!--
-
-Copyright 2006
-
 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
@@ -10,7 +7,7 @@
 "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

Modified: maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/custom-template-configuration-test.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/custom-template-configuration-test.xml?view=diff&rev=558165&r1=558164&r2=558165
==============================================================================
--- maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/custom-template-configuration-test.xml (original)
+++ maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/custom-template-configuration-test.xml Fri Jul 20 14:56:24 2007
@@ -1,7 +1,4 @@
 <!--
-
-Copyright 2006
-
 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
@@ -10,7 +7,7 @@
 "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

Modified: maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/release-configuration-test.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/release-configuration-test.xml?view=diff&rev=558165&r1=558164&r2=558165
==============================================================================
--- maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/release-configuration-test.xml (original)
+++ maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/release-configuration-test.xml Fri Jul 20 14:56:24 2007
@@ -1,7 +1,4 @@
 <!--
-
-Copyright 2006
-
 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
@@ -10,7 +7,7 @@
 "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

Modified: maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/resolved-issues-configuration-test.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/resolved-issues-configuration-test.xml?view=diff&rev=558165&r1=558164&r2=558165
==============================================================================
--- maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/resolved-issues-configuration-test.xml (original)
+++ maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/resolved-issues-configuration-test.xml Fri Jul 20 14:56:24 2007
@@ -1,7 +1,4 @@
 <!--
-
-Copyright 2006
-
 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
@@ -10,7 +7,7 @@
 "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

Modified: maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/simple.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/simple.xml?view=diff&rev=558165&r1=558164&r2=558165
==============================================================================
--- maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/simple.xml (original)
+++ maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/simple.xml Fri Jul 20 14:56:24 2007
@@ -1,7 +1,4 @@
 <!--
-
-Copyright 2006
-
 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
@@ -10,7 +7,7 @@
 "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

Modified: maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/votes-configuration-test.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/votes-configuration-test.xml?view=diff&rev=558165&r1=558164&r2=558165
==============================================================================
--- maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/votes-configuration-test.xml (original)
+++ maven/sandbox/trunk/plugins/maven-swizzle-plugin/src/test/resources/unit/votes-configuration-test.xml Fri Jul 20 14:56:24 2007
@@ -1,7 +1,4 @@
 <!--
-
-Copyright 2006
-
 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
@@ -10,7 +7,7 @@
 "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