Skip to content

Commit

Permalink
Merge pull request #554 from Onlineberatung/VIC-1849_T-Sys_Fix_Critic…
Browse files Browse the repository at this point in the history
…al_CVEs_errors_in_images

chore: VIC-1849 fix CVEs in app.jar
  • Loading branch information
tkuzynow authored Nov 17, 2022
2 parents 72247d9 + ac3c044 commit ebfd4dd
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
<json-smart.version>2.4.7</json-smart.version>
<springfox-swagger-ui.version>2.10.0</springfox-swagger-ui.version>
<spring-context-support.version>5.3.23</spring-context-support.version>
<ehcache.version>2.10.9.2</ehcache.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -139,6 +140,11 @@
<version>0.2.2</version>
</dependency>

<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>3.3.0</version>
</dependency>
<!-- SpringFox: generate YAML file from POJOs and generate documentation -->
<dependency>
<groupId>io.springfox</groupId>
Expand Down Expand Up @@ -185,6 +191,12 @@
<optional>true</optional>
</dependency>

<dependency>
<groupId>com.github.jknack</groupId>
<artifactId>handlebars</artifactId>
<version>4.3.1</version>
</dependency>

<!-- Apache Commons Lang -->
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down Expand Up @@ -276,6 +288,13 @@
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>${ehcache.version}</version>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Expand Down

0 comments on commit ebfd4dd

Please sign in to comment.