Skip to content
This repository has been archived by the owner on Apr 7, 2020. It is now read-only.

Commit

Permalink
fixed missing transitive dependencies for Activiti/Activiti#1790
Browse files Browse the repository at this point in the history
  • Loading branch information
mteodori committed Mar 9, 2018
1 parent 8d244b6 commit ebcb88d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
24 changes: 24 additions & 0 deletions dependency-check-suppression.xml
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.1.xsd">
<suppress>
<notes><![CDATA[
false positive on file name: spring-tuple-1.0.0.RELEASE.jar
]]></notes>
<gav regex="true">^org\.springframework:spring-tuple:.*$</gav>
<cve>CVE-2011-2730</cve>
</suppress>
<suppress>
<notes><![CDATA[
false positive file name: jersey-apache-client4-1.19.1.jar
]]></notes>
<gav regex="true">^com\.sun\.jersey\.contribs:jersey-apache-client4:.*$</gav>
<cve>CVE-2006-0550</cve>
</suppress>
<suppress>
<notes><![CDATA[
false positive file name: java-dataloader-2.0.1.jar
]]></notes>
<gav regex="true">^com\.graphql-java:java-dataloader:.*$</gav>
<cve>CVE-2008-0660</cve>
</suppress>
</suppressions>
3 changes: 3 additions & 0 deletions pom.xml
Expand Up @@ -17,6 +17,9 @@
<developerConnection>scm:git:https://github.com/Activiti/${project.artifactId}.git</developerConnection>
<tag>HEAD</tag>
</scm>
<properties>
<suppressionFile>${basedir}/dependency-check-suppression.xml</suppressionFile>
</properties>
<dependencies>
<dependency>
<groupId>org.activiti.cloud</groupId>
Expand Down

0 comments on commit ebcb88d

Please sign in to comment.