You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2012/07/30 23:36:01 UTC

svn commit: r1367321 - /maven/plugins/trunk/maven-javadoc-plugin/src/main/java/org/apache/maven/plugin/javadoc/AdditionalDependency.java

Author: olamy
Date: Mon Jul 30 21:36:01 2012
New Revision: 1367321

URL: http://svn.apache.org/viewvc?rev=1367321&view=rev
Log:
license header and format

Modified:
    maven/plugins/trunk/maven-javadoc-plugin/src/main/java/org/apache/maven/plugin/javadoc/AdditionalDependency.java

Modified: maven/plugins/trunk/maven-javadoc-plugin/src/main/java/org/apache/maven/plugin/javadoc/AdditionalDependency.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-javadoc-plugin/src/main/java/org/apache/maven/plugin/javadoc/AdditionalDependency.java?rev=1367321&r1=1367320&r2=1367321&view=diff
==============================================================================
--- maven/plugins/trunk/maven-javadoc-plugin/src/main/java/org/apache/maven/plugin/javadoc/AdditionalDependency.java (original)
+++ maven/plugins/trunk/maven-javadoc-plugin/src/main/java/org/apache/maven/plugin/javadoc/AdditionalDependency.java Mon Jul 30 21:36:01 2012
@@ -1,10 +1,32 @@
 package org.apache.maven.plugin.javadoc;
 
+/*
+ * 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.model.Dependency;
 
 /**
  * Provides syntactic sugar for using the standard {@code Dependency}
  * model as a parameter to {@link AbstractJavadocMojo}'s {@code additionalDependencies}.
  */
-public class AdditionalDependency extends Dependency {
+public class AdditionalDependency
+    extends Dependency
+{
+    // no op
 }