Skip to content

Commit

Permalink
Merge pull request #47 from folio-org/spring-boot-3.1
Browse files Browse the repository at this point in the history
Quesnelia: Spring Boot 3.1, folio-spring-base 7.2, OpenAPI 6.6
  • Loading branch information
julianladisch authored Oct 19, 2023
2 parents 9ee40d8 + b282bd5 commit daf5ab0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
3 changes: 3 additions & 0 deletions mod-spring-petstore/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Only the fat jar file is needed for the Docker container
*
!target/*.jar
2 changes: 1 addition & 1 deletion mod-spring-petstore/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# mod-spring-petstore

Copyright (C) 2022 The Open Library Foundation
Copyright (C) 2022-2023 The Open Library Foundation

This software is distributed under the terms of the Apache License,
Version 2.0. See the file "[LICENSE](LICENSE)" for more information.
Expand Down
20 changes: 10 additions & 10 deletions mod-spring-petstore/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.2</version>
<version>3.1.4</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>org.folio</groupId>
Expand All @@ -26,13 +26,13 @@
<openapi.input.file>${project.basedir}/src/main/resources/swagger.api/petstore.yaml</openapi.input.file>
<openapi.external.file>${project.basedir}/src/main/resources/swagger.api/petstore-external.yaml</openapi.external.file>
<java.version>17</java.version>
<folio-spring-base.version>6.1.0</folio-spring-base.version>
<openapi-generator.version>6.2.1</openapi-generator.version>
<spring-cloud-starter-openfeign.version>4.0.0</spring-cloud-starter-openfeign.version>
<folio-spring-base.version>7.2.0</folio-spring-base.version>
<openapi-generator.version>6.6.0</openapi-generator.version>
<spring-cloud-starter-openfeign.version>4.0.4</spring-cloud-starter-openfeign.version>
<mapstruct.version>1.5.2.Final</mapstruct.version>
<!-- test dependencies -->
<wiremock.version>2.33.2</wiremock.version>
<testcontainers.version>1.17.6</testcontainers.version>
<wiremock.version>3.2.0</wiremock.version>
<testcontainers.version>1.19.1</testcontainers.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -148,8 +148,8 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-jre8</artifactId>
<groupId>org.wiremock</groupId>
<artifactId>wiremock</artifactId>
<version>${wiremock.version}</version>
<scope>test</scope>
</dependency>
Expand All @@ -171,7 +171,7 @@

<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.2.0</version>
<version>3.3.1</version>
<executions>
<execution>
<id>filter-descriptor-inputs</id>
Expand Down Expand Up @@ -222,7 +222,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.2.0</version>
<version>3.4.0</version>
<executions>
<execution>
<phase>generate-sources</phase>
Expand Down

0 comments on commit daf5ab0

Please sign in to comment.