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/22 11:46:26 UTC

[5/5] 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/020d7d15
Tree: http://git-wip-us.apache.org/repos/asf/httpcomponents-parent/tree/020d7d15
Diff: http://git-wip-us.apache.org/repos/asf/httpcomponents-parent/diff/020d7d15

Branch: refs/heads/master
Commit: 020d7d152971c1d8dde8ae07515a7e4c182109a1
Parents: 6783251
Author: Oleg Kalnichevski <ol...@apache.org>
Authored: Fri Oct 20 17:10:27 2017 +0200
Committer: Oleg Kalnichevski <ol...@apache.org>
Committed: Sun Oct 22 13:45:15 2017 +0200

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


http://git-wip-us.apache.org/repos/asf/httpcomponents-parent/blob/020d7d15/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>