Skip to content
This repository has been archived by the owner on May 26, 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 a0102a8 commit 8843352
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -17,7 +17,7 @@ before_script:

# Enable integration tests
script:
- mvn verify -B
- mvn verify -B -Pdependency-check

# Send coverage data
after_success:
Expand Down
Expand Up @@ -9,6 +9,9 @@
</parent>
<artifactId>activiti-cloud-services-query-graphql-ws</artifactId>
<name>Activiti Cloud Query :: Services :: Query GraphQL WebSockets</name>
<properties>
<suppressionFile>${basedir}/../../dependency-check-suppression.xml</suppressionFile>
</properties>
<dependencies>
<dependency>
<groupId>org.activiti.cloud</groupId>
Expand Down
Expand Up @@ -9,6 +9,9 @@
</parent>
<artifactId>activiti-cloud-services-query-graphql</artifactId>
<name>Activiti Cloud Query :: Services :: Query GraphQL</name>
<properties>
<suppressionFile>${basedir}/../../dependency-check-suppression.xml</suppressionFile>
</properties>
<dependencies>
<dependency>
<groupId>org.activiti.cloud</groupId>
Expand Down
Expand Up @@ -9,6 +9,9 @@
</parent>
<artifactId>activiti-cloud-services-query-notifications</artifactId>
<name>Activiti Cloud Query :: Services :: Query Notifications</name>
<properties>
<suppressionFile>${basedir}/../../dependency-check-suppression.xml</suppressionFile>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
Expand Down
Expand Up @@ -9,6 +9,9 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>activiti-cloud-services-query-rest</artifactId>
<name>Activiti Cloud Query :: Services :: Query REST</name>
<properties>
<suppressionFile>${basedir}/../../dependency-check-suppression.xml</suppressionFile>
</properties>
<dependencies>
<!-- keycloak included as default identity provider to be excluded if overridden -->
<dependency>
Expand Down
3 changes: 3 additions & 0 deletions activiti-cloud-starter-query/pom.xml
Expand Up @@ -9,6 +9,9 @@
</parent>
<artifactId>activiti-cloud-starter-query</artifactId>
<name>Activiti Cloud Query :: Starter :: Query</name>
<properties>
<suppressionFile>${basedir}/../dependency-check-suppression.xml</suppressionFile>
</properties>
<dependencies>
<dependency>
<groupId>org.activiti.cloud</groupId>
Expand Down
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>

0 comments on commit 8843352

Please sign in to comment.