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:20 UTC

[1/2] httpcomponents-parent git commit: Ignore Intellij project metadata

Repository: httpcomponents-parent
Updated Branches:
  refs/heads/master 5e901aa93 -> 7090813ca


Ignore Intellij project metadata


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

Branch: refs/heads/master
Commit: 06ca6659653e17ede9bc7ec9d686dae7d028eb83
Parents: 5e901aa
Author: Oleg Kalnichevski <ol...@apache.org>
Authored: Fri Oct 20 14:35:30 2017 +0200
Committer: Oleg Kalnichevski <ol...@apache.org>
Committed: Fri Oct 20 16:58:27 2017 +0200

----------------------------------------------------------------------
 .gitignore | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/httpcomponents-parent/blob/06ca6659/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index c03d695..788e530 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,5 @@
 target
 /.project
 /.settings/
+.idea
+*.iml


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

Posted by ol...@apache.org.
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>