You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ha...@apache.org on 2020/03/29 12:08:20 UTC

[royale-compiler] branch develop updated: - Fixed the Apache headers of files I contributed years ago - Removed the "Created by" mentions of me

This is an automated email from the ASF dual-hosted git repository.

harbs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git


The following commit(s) were added to refs/heads/develop by this push:
     new 32895ec  - Fixed the Apache headers of files I contributed years ago - Removed the "Created by" mentions of me
     new abd44c9  Merge pull request #141 from chrisdutz/develop
32895ec is described below

commit 32895ec5cb93d15fb71708b02700efc6cd2ac9d4
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Sun Mar 29 13:54:46 2020 +0200

    - Fixed the Apache headers of files I contributed years ago
    - Removed the "Created by" mentions of me
---
 .../compiler/tools/annotate/AnnotateClass.java     | 23 ++++++++++++--------
 .../tools/annotate/AnnotateClassesMojo.java        | 23 ++++++++++++--------
 .../tools/problems/BaseProblemGeneratorMojo.java   | 24 ++++++++++++---------
 .../tools/problems/ProblemEnumGeneratorMojo.java   | 23 ++++++++++++--------
 .../ProblemResourceBundleGeneratorMojo.java        | 23 ++++++++++++--------
 .../UnknownTreeHandlerGeneratorMojo.java           | 23 ++++++++++++--------
 .../compiler/tools/unpack/UnpackResourceMojo.java  | 24 ++++++++++++---------
 .../royale/compiler/clients/RoyaleToolGroup.java   |  1 -
 .../internal/codegen/js/goog/JarSourceFile.java    |  1 -
 .../org/apache/royale/utils/AntTestAdapter.java    |  1 -
 .../java/org/apache/royale/utils/ITestAdapter.java |  1 -
 .../org/apache/royale/utils/MavenTestAdapter.java  |  1 -
 .../apache/royale/utils/TestAdapterFactory.java    |  1 -
 .../java/utils/FlashplayerSecurityHandler.java     | 25 ++++++++++++----------
 .../maven/extension/RoyaleLanguageSupport.java     | 24 ++++++++++++---------
 .../royale/maven/extension/RoyaleScopeDeriver.java | 24 ++++++++++++---------
 .../maven/extension/RoyaleScopeSelector.java       | 24 ++++++++++++---------
 .../org/apache/royale/maven/BaseCompileMojo.java   | 24 ++++++++++++---------
 .../java/org/apache/royale/maven/BaseMojo.java     | 24 ++++++++++++---------
 .../java/org/apache/royale/maven/ClassExclude.java | 24 ++++++++++++---------
 .../org/apache/royale/maven/CompileASDocMojo.java  | 23 ++++++++++++--------
 .../org/apache/royale/maven/CompileASMojo.java     | 23 ++++++++++++--------
 .../org/apache/royale/maven/CompileAppMojo.java    | 23 ++++++++++++--------
 .../org/apache/royale/maven/CompileJSMojo.java     | 23 ++++++++++++--------
 .../apache/royale/maven/CompileTypedefsMojo.java   | 23 ++++++++++++--------
 .../main/java/org/apache/royale/maven/Define.java  | 24 ++++++++++++---------
 .../main/java/org/apache/royale/maven/Exclude.java | 24 ++++++++++++---------
 .../org/apache/royale/maven/ExterncConfig.java     | 24 ++++++++++++---------
 .../java/org/apache/royale/maven/FieldExclude.java | 24 ++++++++++++---------
 .../apache/royale/maven/GenerateExterncMojo.java   | 24 ++++++++++++---------
 .../apache/royale/maven/GenerateManifestsMojo.java | 24 ++++++++++++---------
 .../java/org/apache/royale/maven/IncludeFile.java  | 24 ++++++++++++---------
 .../org/apache/royale/maven/ManifestComponent.java | 23 ++++++++++++--------
 .../java/org/apache/royale/maven/Namespace.java    | 24 ++++++++++++---------
 .../org/apache/royale/maven/PackageJSMojo.java     | 24 ++++++++++++---------
 .../java/org/apache/royale/maven/TrustMojo.java    | 25 ++++++++++++----------
 .../royale/maven/trust/DefaultTrustHandler.java    | 25 ++++++++++++----------
 .../apache/royale/maven/trust/TrustHandler.java    | 24 ++++++++++++---------
 .../royale/maven/utils/DependencyHelper.java       | 25 ++++++++++++----------
 39 files changed, 462 insertions(+), 329 deletions(-)

diff --git a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClass.java b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClass.java
index a80b33b..3ddf462 100644
--- a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClass.java
+++ b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClass.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.compiler.tools.annotate;
diff --git a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClassesMojo.java b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClassesMojo.java
index 92223ca..636440a 100644
--- a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClassesMojo.java
+++ b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/annotate/AnnotateClassesMojo.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.compiler.tools.annotate;
diff --git a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/problems/BaseProblemGeneratorMojo.java b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/problems/BaseProblemGeneratorMojo.java
index dc4a14a..715b86a 100644
--- a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/problems/BaseProblemGeneratorMojo.java
+++ b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/problems/BaseProblemGeneratorMojo.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.compiler.tools.problems;
@@ -31,7 +36,6 @@ import java.nio.charset.Charset;
 import java.util.*;
 
 /**
- * Created by christoferdutz on 20.02.16.
  */
 public abstract class BaseProblemGeneratorMojo extends AbstractMojo
 {
diff --git a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/problems/ProblemEnumGeneratorMojo.java b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/problems/ProblemEnumGeneratorMojo.java
index b1ef3c3..20c8c97 100644
--- a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/problems/ProblemEnumGeneratorMojo.java
+++ b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/problems/ProblemEnumGeneratorMojo.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.compiler.tools.problems;
diff --git a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/problems/ProblemResourceBundleGeneratorMojo.java b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/problems/ProblemResourceBundleGeneratorMojo.java
index 0183982..ea7f400 100644
--- a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/problems/ProblemResourceBundleGeneratorMojo.java
+++ b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/problems/ProblemResourceBundleGeneratorMojo.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.compiler.tools.problems;
diff --git a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/unknowntreehandler/UnknownTreeHandlerGeneratorMojo.java b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/unknowntreehandler/UnknownTreeHandlerGeneratorMojo.java
index 6cce78f..0921891 100644
--- a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/unknowntreehandler/UnknownTreeHandlerGeneratorMojo.java
+++ b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/unknowntreehandler/UnknownTreeHandlerGeneratorMojo.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.compiler.tools.unknowntreehandler;
diff --git a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/unpack/UnpackResourceMojo.java b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/unpack/UnpackResourceMojo.java
index 33438a4..864f97b 100644
--- a/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/unpack/UnpackResourceMojo.java
+++ b/compiler-build-tools/src/main/java/org/apache/royale/compiler/tools/unpack/UnpackResourceMojo.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.compiler.tools.unpack;
@@ -28,7 +33,6 @@ import org.apache.maven.plugins.annotations.Parameter;
 import java.io.*;
 
 /**
- * Created by christoferdutz on 18.03.16.
  */
 @Mojo(name="unpack-resources",defaultPhase = LifecyclePhase.GENERATE_SOURCES)
 public class UnpackResourceMojo
diff --git a/compiler-jx/src/main/java/org/apache/royale/compiler/clients/RoyaleToolGroup.java b/compiler-jx/src/main/java/org/apache/royale/compiler/clients/RoyaleToolGroup.java
index 1b5d58a..4a60041 100644
--- a/compiler-jx/src/main/java/org/apache/royale/compiler/clients/RoyaleToolGroup.java
+++ b/compiler-jx/src/main/java/org/apache/royale/compiler/clients/RoyaleToolGroup.java
@@ -23,7 +23,6 @@ import org.apache.royale.compiler.internal.driver.mxml.royale.MXMLRoyaleASDocDIT
 import org.apache.flex.tools.AbstractFlexToolGroup;
 
 /**
- * Created by christoferdutz on 10.11.14.
  */
 public class RoyaleToolGroup extends AbstractFlexToolGroup {
 
diff --git a/compiler-jx/src/main/java/org/apache/royale/compiler/internal/codegen/js/goog/JarSourceFile.java b/compiler-jx/src/main/java/org/apache/royale/compiler/internal/codegen/js/goog/JarSourceFile.java
index 1f97c80..440afb9 100644
--- a/compiler-jx/src/main/java/org/apache/royale/compiler/internal/codegen/js/goog/JarSourceFile.java
+++ b/compiler-jx/src/main/java/org/apache/royale/compiler/internal/codegen/js/goog/JarSourceFile.java
@@ -27,7 +27,6 @@ import java.io.Reader;
 import java.io.StringReader;
 
 /**
- * Created by christoferdutz on 28.10.16.
  */
 public class JarSourceFile extends SourceFile {
 
diff --git a/compiler-test-utils/src/main/java/org/apache/royale/utils/AntTestAdapter.java b/compiler-test-utils/src/main/java/org/apache/royale/utils/AntTestAdapter.java
index 96834a9..fcb5050 100644
--- a/compiler-test-utils/src/main/java/org/apache/royale/utils/AntTestAdapter.java
+++ b/compiler-test-utils/src/main/java/org/apache/royale/utils/AntTestAdapter.java
@@ -26,7 +26,6 @@ import java.util.ArrayList;
 import java.util.List;
 
 /**
- * Created by christoferdutz on 23.02.16.
  */
 public class AntTestAdapter implements ITestAdapter {
 
diff --git a/compiler-test-utils/src/main/java/org/apache/royale/utils/ITestAdapter.java b/compiler-test-utils/src/main/java/org/apache/royale/utils/ITestAdapter.java
index 2477397..f3b516b 100644
--- a/compiler-test-utils/src/main/java/org/apache/royale/utils/ITestAdapter.java
+++ b/compiler-test-utils/src/main/java/org/apache/royale/utils/ITestAdapter.java
@@ -23,7 +23,6 @@ import java.io.File;
 import java.util.List;
 
 /**
- * Created by christoferdutz on 23.02.16.
  */
 public interface ITestAdapter {
 
diff --git a/compiler-test-utils/src/main/java/org/apache/royale/utils/MavenTestAdapter.java b/compiler-test-utils/src/main/java/org/apache/royale/utils/MavenTestAdapter.java
index 52ace37..11441df 100644
--- a/compiler-test-utils/src/main/java/org/apache/royale/utils/MavenTestAdapter.java
+++ b/compiler-test-utils/src/main/java/org/apache/royale/utils/MavenTestAdapter.java
@@ -31,7 +31,6 @@ import java.util.List;
 import java.util.regex.Matcher;
 
 /**
- * Created by christoferdutz on 23.02.16.
  */
 public class MavenTestAdapter implements ITestAdapter {
 
diff --git a/compiler-test-utils/src/main/java/org/apache/royale/utils/TestAdapterFactory.java b/compiler-test-utils/src/main/java/org/apache/royale/utils/TestAdapterFactory.java
index f9db558..3107663 100644
--- a/compiler-test-utils/src/main/java/org/apache/royale/utils/TestAdapterFactory.java
+++ b/compiler-test-utils/src/main/java/org/apache/royale/utils/TestAdapterFactory.java
@@ -20,7 +20,6 @@
 package org.apache.royale.utils;
 
 /**
- * Created by christoferdutz on 10.03.16.
  */
 public class TestAdapterFactory {
 
diff --git a/compiler/src/test/java/utils/FlashplayerSecurityHandler.java b/compiler/src/test/java/utils/FlashplayerSecurityHandler.java
index a198a42..cefc5df 100644
--- a/compiler/src/test/java/utils/FlashplayerSecurityHandler.java
+++ b/compiler/src/test/java/utils/FlashplayerSecurityHandler.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package utils;
@@ -26,8 +31,6 @@ import java.util.List;
  * This prevents the FlashPlayer from complaining about running untrusted
  * code, which will prevent the tests using the FlashPlayer from succeeding.
  *
- * Created by christoferdutz on 14.04.16.
- *
  * TODO: Clean up the tests.
  * @deprecated This class is duplicated here to allow trusting SWFs till the testsuite has been migrated.
  */
diff --git a/royale-maven-extension/src/main/java/org/apache/royale/maven/extension/RoyaleLanguageSupport.java b/royale-maven-extension/src/main/java/org/apache/royale/maven/extension/RoyaleLanguageSupport.java
index 53748a8..09dbf85 100644
--- a/royale-maven-extension/src/main/java/org/apache/royale/maven/extension/RoyaleLanguageSupport.java
+++ b/royale-maven-extension/src/main/java/org/apache/royale/maven/extension/RoyaleLanguageSupport.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven.extension;
@@ -23,7 +28,6 @@ import org.eclipse.aether.util.graph.transformer.JavaScopeSelector;
 import javax.inject.Named;
 
 /**
- * Created by christoferdutz on 18.07.16.
  */
 @Named
 @Component( role = LanguageSupport.class, hint = "royale" )
diff --git a/royale-maven-extension/src/main/java/org/apache/royale/maven/extension/RoyaleScopeDeriver.java b/royale-maven-extension/src/main/java/org/apache/royale/maven/extension/RoyaleScopeDeriver.java
index cc9c72a..d9a902d 100644
--- a/royale-maven-extension/src/main/java/org/apache/royale/maven/extension/RoyaleScopeDeriver.java
+++ b/royale-maven-extension/src/main/java/org/apache/royale/maven/extension/RoyaleScopeDeriver.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven.extension;
@@ -18,7 +23,6 @@ import org.eclipse.aether.RepositoryException;
 import org.eclipse.aether.util.graph.transformer.ConflictResolver;
 
 /**
- * Created by christoferdutz on 18.07.16.
  */
 public class RoyaleScopeDeriver extends ConflictResolver.ScopeDeriver {
 
diff --git a/royale-maven-extension/src/main/java/org/apache/royale/maven/extension/RoyaleScopeSelector.java b/royale-maven-extension/src/main/java/org/apache/royale/maven/extension/RoyaleScopeSelector.java
index 214fa63..6c34a7e 100644
--- a/royale-maven-extension/src/main/java/org/apache/royale/maven/extension/RoyaleScopeSelector.java
+++ b/royale-maven-extension/src/main/java/org/apache/royale/maven/extension/RoyaleScopeSelector.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven.extension;
@@ -18,7 +23,6 @@ import org.eclipse.aether.RepositoryException;
 import org.eclipse.aether.util.graph.transformer.ConflictResolver;
 
 /**
- * Created by christoferdutz on 18.07.16.
  */
 public class RoyaleScopeSelector extends ConflictResolver.ScopeSelector {
 
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/BaseCompileMojo.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/BaseCompileMojo.java
index 9046d92..d4e8ee1 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/BaseCompileMojo.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/BaseCompileMojo.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven;
@@ -17,7 +22,6 @@ package org.apache.royale.maven;
 import org.apache.flex.tools.FlexTool;
 
 /**
- * Created by christoferdutz on 30.04.16.
  */
 public abstract class BaseCompileMojo extends BaseMojo {
 
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/BaseMojo.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/BaseMojo.java
index aa7f058..98ea54a 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/BaseMojo.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/BaseMojo.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven;
@@ -38,7 +43,6 @@ import java.io.IOException;
 import java.util.*;
 
 /**
- * Created by christoferdutz on 22.04.16.
  */
 public abstract class BaseMojo
         extends AbstractMojo
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/ClassExclude.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/ClassExclude.java
index 4db346a..fbee3eb 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/ClassExclude.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/ClassExclude.java
@@ -1,21 +1,25 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven;
 
 /**
- * Created by christoferdutz on 01.05.16.
  */
 public class ClassExclude {
 
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileASDocMojo.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileASDocMojo.java
index 5554304..b9424b9 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileASDocMojo.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileASDocMojo.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven;
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileASMojo.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileASMojo.java
index 05c4212..f6d1a32 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileASMojo.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileASMojo.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven;
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileAppMojo.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileAppMojo.java
index bfc40aa..6737f6d 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileAppMojo.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileAppMojo.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven;
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileJSMojo.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileJSMojo.java
index 5f80ccb..0809108 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileJSMojo.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileJSMojo.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven;
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileTypedefsMojo.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileTypedefsMojo.java
index 5075da9..a898aa6 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileTypedefsMojo.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/CompileTypedefsMojo.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven;
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/Define.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/Define.java
index 0b063ee..434efdb 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/Define.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/Define.java
@@ -1,21 +1,25 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven;
 
 /**
- * Created by christoferdutz on 07.06.16.
  */
 public class Define {
 
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/Exclude.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/Exclude.java
index c29d5fd..9cbc6d6 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/Exclude.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/Exclude.java
@@ -1,21 +1,25 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven;
 
 /**
- * Created by christoferdutz on 01.05.16.
  */
 public class Exclude {
 
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/ExterncConfig.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/ExterncConfig.java
index 0436259..8b14540 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/ExterncConfig.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/ExterncConfig.java
@@ -1,21 +1,25 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven;
 
 /**
- * Created by christoferdutz on 01.05.16.
  */
 public class ExterncConfig {
 
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/FieldExclude.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/FieldExclude.java
index b571191..9f1080d 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/FieldExclude.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/FieldExclude.java
@@ -1,21 +1,25 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven;
 
 /**
- * Created by christoferdutz on 01.05.16.
  */
 public class FieldExclude {
 
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/GenerateExterncMojo.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/GenerateExterncMojo.java
index b0c2d35..835fab9 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/GenerateExterncMojo.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/GenerateExterncMojo.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven;
@@ -27,7 +32,6 @@ import java.util.LinkedList;
 import java.util.List;
 
 /**
- * Created by christoferdutz on 30.04.16.
  */
 @Mojo(name="generate-extern",defaultPhase = LifecyclePhase.PROCESS_SOURCES)
 public class GenerateExterncMojo
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/GenerateManifestsMojo.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/GenerateManifestsMojo.java
index 80f63ed..422b752 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/GenerateManifestsMojo.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/GenerateManifestsMojo.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven;
@@ -48,7 +53,6 @@ import java.util.zip.ZipEntry;
 import java.util.zip.ZipInputStream;
 
 /**
- * Created by christoferdutz on 18.05.16.
  */
 @Mojo(name="generate-manifests",defaultPhase = LifecyclePhase.GENERATE_RESOURCES)
 public class GenerateManifestsMojo
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/IncludeFile.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/IncludeFile.java
index a79dd18..d436cd5 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/IncludeFile.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/IncludeFile.java
@@ -1,21 +1,25 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven;
 
 /**
- * Created by christoferdutz on 06.06.16.
  */
 public class IncludeFile {
 
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/ManifestComponent.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/ManifestComponent.java
index 4fe1bbb..b3682a4 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/ManifestComponent.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/ManifestComponent.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven;
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/Namespace.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/Namespace.java
index 0dc2cac..0263a49 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/Namespace.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/Namespace.java
@@ -1,21 +1,25 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven;
 
 /**
- * Created by christoferdutz on 01.05.16.
  */
 public class Namespace {
 
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/PackageJSMojo.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/PackageJSMojo.java
index ff3c957..fd0847d 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/PackageJSMojo.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/PackageJSMojo.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven;
@@ -33,7 +38,6 @@ import java.util.zip.ZipEntry;
 import java.util.zip.ZipOutputStream;
 
 /**
- * Created by christoferdutz on 11.03.17.
  */
 @Mojo(name="package-js",defaultPhase = LifecyclePhase.PACKAGE)
 public class PackageJSMojo extends AbstractMojo {
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/TrustMojo.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/TrustMojo.java
index 5838acd..4491b52 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/TrustMojo.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/TrustMojo.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven;
@@ -27,8 +32,6 @@ import java.io.File;
 /**
  * This little mojo simply adds the maven build output directory to the
  * list of trusted sources for the FlashPlayer.
- *
- * Created by christoferdutz on 17.04.16.
  */
 @Mojo(name="trust",defaultPhase = LifecyclePhase.PROCESS_TEST_CLASSES)
 public class TrustMojo
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/trust/DefaultTrustHandler.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/trust/DefaultTrustHandler.java
index f201244..438e8d2 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/trust/DefaultTrustHandler.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/trust/DefaultTrustHandler.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven.trust;
@@ -27,8 +32,6 @@ import java.util.List;
  * Little helper that adds a directory to the FlashPlayer trust settings.
  * This prevents the FlashPlayer from complaining about running untrusted
  * code, which will prevent the tests using the FlashPlayer from succeeding.
- *
- * Created by christoferdutz on 14.04.16.
  */
 @Named
 @Singleton
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/trust/TrustHandler.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/trust/TrustHandler.java
index ccc031d..175a034 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/trust/TrustHandler.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/trust/TrustHandler.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven.trust;
@@ -17,7 +22,6 @@ package org.apache.royale.maven.trust;
 import java.io.File;
 
 /**
- * Created by christoferdutz on 14.04.16.
  */
 public interface TrustHandler {
 
diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/utils/DependencyHelper.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/utils/DependencyHelper.java
index 0dd0d0a..eef8699 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/utils/DependencyHelper.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/utils/DependencyHelper.java
@@ -1,15 +1,20 @@
 /*
- * 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.
  */
 
 package org.apache.royale.maven.utils;
@@ -25,8 +30,6 @@ import java.util.LinkedList;
 import java.util.List;
 
 /**
- * Created by christoferdutz on 18.05.16.
- *
  * TODO: Change this to a real component ... statics suck.
  */
 public class DependencyHelper {