You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2017/10/20 15:12:21 UTC

[2/2] httpcomponents-parent git commit: Silence doclint warning about missing @param and @throws

Silence doclint warning about missing @param and @throws


Project: http://git-wip-us.apache.org/repos/asf/httpcomponents-parent/repo
Commit: http://git-wip-us.apache.org/repos/asf/httpcomponents-parent/commit/7090813c
Tree: http://git-wip-us.apache.org/repos/asf/httpcomponents-parent/tree/7090813c
Diff: http://git-wip-us.apache.org/repos/asf/httpcomponents-parent/diff/7090813c

Branch: refs/heads/master
Commit: 7090813cae758e26a8d3f2cd11363841bfdddcd6
Parents: 06ca665
Author: Oleg Kalnichevski <ol...@apache.org>
Authored: Fri Oct 20 17:10:27 2017 +0200
Committer: Oleg Kalnichevski <ol...@apache.org>
Committed: Fri Oct 20 17:10:27 2017 +0200

----------------------------------------------------------------------
 pom.xml | 20 +++++++++++++++++++-
 1 file changed, 19 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/httpcomponents-parent/blob/7090813c/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index f778ddf..787e804 100644
--- a/pom.xml
+++ b/pom.xml
@@ -850,7 +850,25 @@ Fixed JIRA link
         </plugins>
       </build>
     </profile>
-    
+
+    <profile>
+      <id>lax-doclint</id>
+      <activation>
+        <jdk>1.8</jdk>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <configuration>
+              <additionalparam>-Xdoclint:-missing</additionalparam>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+
     <profile>
       <id>travis-cobertura</id>
       <build>