Skip to content
This repository was archived by the owner on Feb 26, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
sudo: true
language: java
jdk:
- openjdk8
services:
- docker
cache:
Expand Down
17 changes: 16 additions & 1 deletion dependency-check-suppression.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<!--
This file is used to suppress false positives in the dependency check
-->
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.1.xsd">
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd">

<!--
The issue CVE-2008-0732 seems to only affect SUSE LINUX init scripts. We are not using them.
Expand All @@ -45,5 +45,20 @@
<cve>CVE-2019-0232</cve>
</suppress>

<suppress until="2020-01-01Z">
<!--
Introduced through: spring-security-core-5.2.0.RELEASE.jar
-->
<cve>CVE-2018-1258</cve>

<!--
Not fixable until camunda-spin updates its jackson dependency
Introduced through: camunda-spin-dataformat-all-1.6.3.jar/META-INF/maven/com.fasterxml.jackson.core/jackson-databind/pom.xml
-->
<cve>CVE-2019-14379</cve>
<cve>CVE-2018-19362</cve>
<cve>CVE-2018-19361</cve>
<cve>CVE-2018-19360</cve>
</suppress>

</suppressions>
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@
please see org.camunda.bpm.springboot.project:camunda-bpm-spring-boot-starter-root
-->
<camunda.version>7.10.0</camunda.version>
<camunda.spring.boot.starter.version>3.2.0</camunda.spring.boot.starter.version>
<camunda.spring.boot.starter.version>3.2.7</camunda.spring.boot.starter.version>
<!-- END IMPORTANT -->

<spring-boot.version>2.1.8.RELEASE</spring-boot.version>
<spring-boot.version>2.2.0.RELEASE</spring-boot.version>
<swagger-version>2.9.0</swagger-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down Expand Up @@ -256,7 +256,7 @@
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>3.3.1</version>
<version>5.2.2</version>
<configuration>
<failBuildOnCVSS>8</failBuildOnCVSS>
<format>ALL</format>
Expand Down
2 changes: 1 addition & 1 deletion scb-persistenceproviders/s3-persistenceprovider/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-s3</artifactId>
<version>1.11.453</version>
<version>1.11.653</version>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
Expand Down