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 2018/08/07 09:20:54 UTC

httpcomponents-parent git commit: HTTPCORE-549, HTTPCLIENT-1937: Added OWASP dependency check profile

Repository: httpcomponents-parent
Updated Branches:
  refs/heads/master 8231c01c0 -> 274d5c8e1


HTTPCORE-549, HTTPCLIENT-1937: Added OWASP dependency check profile


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

Branch: refs/heads/master
Commit: 274d5c8e1c6c69e225203f50ad9160c9e54129dc
Parents: 8231c01
Author: clevertension <zd...@gmail.com>
Authored: Tue Aug 7 16:31:24 2018 +0800
Committer: Oleg Kalnichevski <ol...@apache.org>
Committed: Tue Aug 7 11:19:48 2018 +0200

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


http://git-wip-us.apache.org/repos/asf/httpcomponents-parent/blob/274d5c8e/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index b3ad222..f963203 100644
--- a/pom.xml
+++ b/pom.xml
@@ -46,6 +46,7 @@
 Version 11 - changes since version 10
 =====================================
 
+Added dependency-check-maven 3.3.1
 maven-javadoc-plugin 3.0.0-M1 -> 3.0.1
 maven-site-plugin 3.6 -> 3.7 (allows building with Java 9)
 wagon-ssh 2.10 -> 3.0.0.
@@ -963,7 +964,25 @@ Fixed JIRA link
         </plugins>
       </build>
     </profile>
-    
+    <profile>
+      <id>owasp</id>
+      <reporting>
+        <plugins>
+          <plugin>
+            <groupId>org.owasp</groupId>
+            <artifactId>dependency-check-maven</artifactId>
+            <version>3.3.1</version>
+            <reportSets>
+              <reportSet>
+                <reports>
+                  <report>aggregate</report>
+                </reports>
+              </reportSet>
+            </reportSets>
+          </plugin>
+        </plugins>
+      </reporting>
+    </profile>
   </profiles>
 
   <prerequisites>