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 2014/04/06 23:41:24 UTC

git commit: Add missing license headers.

Repository: maven-plugin-testing
Updated Branches:
  refs/heads/master 4e8183e68 -> 93e2b294f


Add missing license headers.


Project: http://git-wip-us.apache.org/repos/asf/maven-plugin-testing/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-plugin-testing/commit/93e2b294
Tree: http://git-wip-us.apache.org/repos/asf/maven-plugin-testing/tree/93e2b294
Diff: http://git-wip-us.apache.org/repos/asf/maven-plugin-testing/diff/93e2b294

Branch: refs/heads/master
Commit: 93e2b294f4e513d7bf939fe23d59b53558901576
Parents: 4e8183e
Author: Dennis Lundberg <de...@apache.org>
Authored: Sun Apr 6 23:41:07 2014 +0200
Committer: Dennis Lundberg <de...@apache.org>
Committed: Sun Apr 6 23:41:07 2014 +0200

----------------------------------------------------------------------
 .../src/site/apt/index.apt                      | 20 ++++++++++++++++++++
 .../projects/basic/src/main/java/ItMojo.java    | 19 +++++++++++++++++++
 2 files changed, 39 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-plugin-testing/blob/93e2b294/maven-plugin-testing-tools/src/site/apt/index.apt
----------------------------------------------------------------------
diff --git a/maven-plugin-testing-tools/src/site/apt/index.apt b/maven-plugin-testing-tools/src/site/apt/index.apt
index 4d3568e..08143c1 100644
--- a/maven-plugin-testing-tools/src/site/apt/index.apt
+++ b/maven-plugin-testing-tools/src/site/apt/index.apt
@@ -6,6 +6,26 @@
   13 November 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
+~~ 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/doxia/references/apt-format.html
+
 Maven Plugin Testing Tools
 
   This API is meant to provide a series of convenience tools for developers wishing to test Maven 

http://git-wip-us.apache.org/repos/asf/maven-plugin-testing/blob/93e2b294/maven-plugin-testing-tools/src/test/resources/projects/basic/src/main/java/ItMojo.java
----------------------------------------------------------------------
diff --git a/maven-plugin-testing-tools/src/test/resources/projects/basic/src/main/java/ItMojo.java b/maven-plugin-testing-tools/src/test/resources/projects/basic/src/main/java/ItMojo.java
index d8132df..38bc49f 100644
--- a/maven-plugin-testing-tools/src/test/resources/projects/basic/src/main/java/ItMojo.java
+++ b/maven-plugin-testing-tools/src/test/resources/projects/basic/src/main/java/ItMojo.java
@@ -1,3 +1,22 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
 import org.apache.maven.plugin.*;
 
 /**