Skip to content

Commit

Permalink
Update Retrofit dep (2.9 -> 2.11), module deps
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Feb 3, 2025
1 parent 2c3c674 commit 0d981a4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import static org.junit.jupiter.api.Assertions.assertEquals;

public class ReadIntArray7Test extends TestBase
{
Expand Down
4 changes: 2 additions & 2 deletions jr-retrofit2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ ${project.groupId}.retrofit2;version=${project.version}
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>retrofit</artifactId>
<version>2.9.0</version>
<version>2.11.0</version>
</dependency>
<!-- Looks like Retrofit has hard dep on OkHttp as well
-->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.11.0</version>
<version>4.12.0</version>
</dependency>
</dependencies>

Expand Down
8 changes: 4 additions & 4 deletions jr-retrofit2/src/moditect/module-info.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Generated 11-Mar-2019 using Moditect maven plugin
module com.fasterxml.jackson.jr.retrofit2 {
requires transitive com.fasterxml.jackson.jr.ob;
// 11-Mar-2019, tatu: These are probably not right...
requires transitive okhttp;
requires transitive retrofit;

// 02-Feb-2025, tatu: Automatic-Module-Names:
requires transitive okhttp3;
requires transitive retrofit2;

exports com.fasterxml.jackson.jr.retrofit2;
}
2 changes: 2 additions & 0 deletions release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ Modules:
#171: Add a `JSON.Feature.WRITE_RECORD_FIELDS_IN_DECLARATION_ORDER` for
retaining Serialization order of Java Records (instead of alphabetic)
#184: Unify testing structure/tools to JUnit5 [JSTEP-10]
- Update Retrofit2 dep from 2.9 to 2.11
- Fix `retrofit2` module deps to Retrofit/OkHttp libraries

2.18.2 (27-Nov-2024)

Expand Down

0 comments on commit 0d981a4

Please sign in to comment.