|
|
|
@ -18,6 +18,7 @@ |
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
|
|
<cxf.version>3.3.1</cxf.version> |
|
|
|
|
<jackson.version>2.9.9</jackson.version> |
|
|
|
|
<tomcat.version>8.5.42</tomcat.version> |
|
|
|
|
</properties> |
|
|
|
|
|
|
|
|
|
<repositories> |
|
|
|
@ -87,7 +88,7 @@ |
|
|
|
|
<!-- Import dependency management from Spring Boot --> |
|
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
|
<artifactId>spring-boot-dependencies</artifactId> |
|
|
|
|
<version>1.5.20.RELEASE</version> |
|
|
|
|
<version>1.5.21.RELEASE</version> |
|
|
|
|
<type>pom</type> |
|
|
|
|
<scope>import</scope> |
|
|
|
|
</dependency> |
|
|
|
@ -192,37 +193,37 @@ |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId> |
|
|
|
|
<artifactId>tomcat-embed-core</artifactId> |
|
|
|
|
<version>8.5.40</version> |
|
|
|
|
<version>${tomcat.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId> |
|
|
|
|
<artifactId>tomcat-embed-el</artifactId> |
|
|
|
|
<version>8.5.40</version> |
|
|
|
|
<version>${tomcat.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId> |
|
|
|
|
<artifactId>tomcat-embed-jasper</artifactId> |
|
|
|
|
<version>8.5.40</version> |
|
|
|
|
<version>${tomcat.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId> |
|
|
|
|
<artifactId>tomcat-embed-websocket</artifactId> |
|
|
|
|
<version>8.5.40</version> |
|
|
|
|
<version>${tomcat.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.apache.tomcat</groupId> |
|
|
|
|
<artifactId>tomcat-annotations-api</artifactId> |
|
|
|
|
<version>8.5.40</version> |
|
|
|
|
<version>${tomcat.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.apache.tomcat</groupId> |
|
|
|
|
<artifactId>tomcat-jdbc</artifactId> |
|
|
|
|
<version>8.5.40</version> |
|
|
|
|
<version>${tomcat.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.apache.tomcat</groupId> |
|
|
|
|
<artifactId>tomcat-juli</artifactId> |
|
|
|
|
<version>8.5.40</version> |
|
|
|
|
<version>${tomcat.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
</dependencies> |
|
|
|
|
</dependencyManagement> |
|
|
|
@ -300,13 +301,15 @@ |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.owasp</groupId> |
|
|
|
|
<artifactId>dependency-check-maven</artifactId> |
|
|
|
|
<version>4.0.0</version> |
|
|
|
|
<version>5.0.0</version> |
|
|
|
|
<inherited>true</inherited> |
|
|
|
|
<configuration> |
|
|
|
|
<failBuildOnAnyVulnerability>true</failBuildOnAnyVulnerability> |
|
|
|
|
<suppressionFiles> |
|
|
|
|
<suppressionFile>${project.basedir}/cve-suppressed.xml</suppressionFile> |
|
|
|
|
</suppressionFiles> |
|
|
|
|
<!-- disabled due to the poor quality of the data from this analyzer --> |
|
|
|
|
<ossindexAnalyzerEnabled>false</ossindexAnalyzerEnabled> |
|
|
|
|
</configuration> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|