Skip to content

Commit

Permalink
- Override snakeyaml version to make Trivy happy
Browse files Browse the repository at this point in the history
- Update to Spring Boot 3 compatible spring doc packages
  • Loading branch information
rlubke committed Jul 20, 2023
1 parent 27bf157 commit 1ed1788
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion carts/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>${version.lib.springdoc-openapi}</version>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion catalog/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>${version.lib.springdoc-openapi}</version>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion orders/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>${version.lib.springdoc-openapi}</version>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion payment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>${version.lib.springdoc-openapi}</version>
</dependency>

Expand Down
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@
<version.lib.junit>5.9.3</version.lib.junit>
<version.lib.lombok>1.18.28</version.lib.lombok>
<version.lib.rest-assured>5.3.1</version.lib.rest-assured>
<version.lib.snake.yaml>2.0</version.lib.snake.yaml>
<version.lib.spring-boot>3.1.2</version.lib.spring-boot>
<version.lib.spring-cloud>2022.0.3</version.lib.spring-cloud>
<version.lib.springdoc-openapi>1.7.0</version.lib.springdoc-openapi>
<version.lib.springdoc-openapi>2.1.0</version.lib.springdoc-openapi>

<version.plugin.jib>3.3.2</version.plugin.jib>
<version.plugin.failsafe>3.1.2</version.plugin.failsafe>
Expand All @@ -57,6 +58,11 @@

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>${version.lib.snake.yaml}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion shipping/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>${version.lib.springdoc-openapi}</version>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion users/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>${version.lib.springdoc-openapi}</version>
</dependency>

Expand Down

0 comments on commit 1ed1788

Please sign in to comment.