Skip to content

Commit

Permalink
upgrade dependencies to work with spring boot 3.4 (#608)
Browse files Browse the repository at this point in the history
Co-authored-by: thomas loubrieu <thomas.loubrieu@jpl.nasa.gov>
  • Loading branch information
tloubrieu-jpl and thomas loubrieu authored Feb 6, 2025
1 parent a95825e commit 6e69a69
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Go through this file line-by-line and replace the template values with your own.
<project-name>Registry API</project-name>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>17</maven.compiler.release>
<spring-framework-version>6.0.23</spring-framework-version>
<spring-framework-version>6.2.2</spring-framework-version>
</properties>

<groupId>gov.nasa.pds</groupId>
Expand Down
18 changes: 8 additions & 10 deletions service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -163,17 +163,16 @@
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.0.4</version>
<version>2.8.4</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.springdoc/springdoc-openapi-starter-common -->
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-common</artifactId>
<version>2.0.4</version>
<version>2.8.4</version>
</dependency>


<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
Expand All @@ -183,7 +182,7 @@
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-core</artifactId>
<version>2.2.8</version>
<version>2.2.28</version>
</dependency>


Expand Down Expand Up @@ -322,23 +321,23 @@
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<!--version>5.2.3</version-->
<version>5.3.1</version>
<version>5.4.1</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents.core5/httpcore5 -->

<dependency>
<groupId>org.apache.httpcomponents.core5</groupId>
<artifactId>httpcore5</artifactId>
<version>5.2.4</version>
<version>5.3.3</version>
</dependency>


<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents.core5/httpcore5 -->
<dependency>
<groupId>org.apache.httpcomponents.core5</groupId>
<artifactId>httpcore5-h2</artifactId>
<version>5.2.4</version>
<version>5.3.3</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents.client5/httpclient5-fluent -->
Expand Down Expand Up @@ -454,13 +453,12 @@
<scope>test</scope>
</dependency>





<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>


<dependency>
<groupId>com.amazonaws</groupId>
Expand Down

0 comments on commit 6e69a69

Please sign in to comment.