diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/ApiClient.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/ApiClient.mustache
index a4abf07f454..a27de9b2b36 100644
--- a/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/ApiClient.mustache
+++ b/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/ApiClient.mustache
@@ -22,7 +22,7 @@ import retrofit2.Retrofit;
import retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory;
{{/useRxJava2}}
{{#useRxJava3}}
-import hu.akarnokd.rxjava3.retrofit.RxJava3CallAdapterFactory;
+import retrofit2.adapter.rxjava3.RxJava3CallAdapterFactory;
{{/useRxJava3}}
{{#gson}}
import retrofit2.converter.gson.GsonConverterFactory;
diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/build.gradle.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/build.gradle.mustache
index 96a0a66ca1e..407e97a335e 100644
--- a/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/build.gradle.mustache
+++ b/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/build.gradle.mustache
@@ -98,7 +98,7 @@ if(hasProperty('target') && target == 'android') {
ext {
oltu_version = "1.0.1"
- retrofit_version = "2.3.0"
+ retrofit_version = "2.11.0"
{{#jackson}}
jackson_version = "2.17.1"
jackson_databind_version = "2.17.1"
@@ -134,7 +134,7 @@ dependencies {
implementation "io.reactivex.rxjava2:rxjava:$rx_java_version"
{{/useRxJava2}}
{{#useRxJava3}}
- implementation 'com.github.akarnokd:rxjava3-retrofit-adapter:3.0.0'
+ implementation 'com.squareup.retrofit2:adapter-rxjava3:$$retrofit_version'
implementation "io.reactivex.rxjava3:rxjava:$rx_java_version"
{{/useRxJava3}}
implementation "io.swagger:swagger-annotations:$swagger_annotations_version"
diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/build.sbt.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/build.sbt.mustache
index 7e7f69093ba..03b8653d07e 100644
--- a/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/build.sbt.mustache
+++ b/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/build.sbt.mustache
@@ -9,25 +9,25 @@ lazy val root = (project in file(".")).
publishArtifact in (Compile, packageDoc) := false,
resolvers += Resolver.mavenLocal,
libraryDependencies ++= Seq(
- "com.squareup.retrofit2" % "retrofit" % "2.3.0" % "compile",
- "com.squareup.retrofit2" % "converter-scalars" % "2.3.0" % "compile",
+ "com.squareup.retrofit2" % "retrofit" % "2.11.0" % "compile",
+ "com.squareup.retrofit2" % "converter-scalars" % "2.11.0" % "compile",
{{^usePlayWS}}
- "com.squareup.retrofit2" % "converter-gson" % "2.3.0" % "compile",
+ "com.squareup.retrofit2" % "converter-gson" % "2.11.0" % "compile",
{{/usePlayWS}}
{{#usePlayWS}}
"com.typesafe.play" % "play-ahc-ws_2.12" % "2.6.7" % "compile",
"jakarta.validation" % "jakarta.validation-api" % "3.0.2" % "compile",
- "com.squareup.retrofit2" % "converter-jackson" % "2.3.0" % "compile",
+ "com.squareup.retrofit2" % "converter-jackson" % "2.11.0" % "compile",
"com.fasterxml.jackson.core" % "jackson-core" % "2.17.1" % "compile",
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.17.1" % "compile",
"com.fasterxml.jackson.core" % "jackson-databind" % "2.17.1" % "compile",
{{/usePlayWS}}
{{#useRxJava2}}
- "com.squareup.retrofit2" % "adapter-rxjava2" % "2.3.0" % "compile",
+ "com.squareup.retrofit2" % "adapter-rxjava2" % "2.11.0" % "compile",
"io.reactivex.rxjava2" % "rxjava" % "2.1.1" % "compile",
{{/useRxJava2}}
{{#useRxJava3}}
- "com.github.akarnokd" % "rxjava3-retrofit-adapter" % "3.0.0" % "compile",
+ "com.squareup.retrofit2" % "adapter-rxjava3" % "2.11.0" % "compile",
"io.reactivex.rxjava3" % "rxjava" % "3.0.4" % "compile",
{{/useRxJava3}}
"io.swagger" % "swagger-annotations" % "1.5.21" % "compile",
diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/pom.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/pom.mustache
index a365e18f29a..b02a5fb2e55 100644
--- a/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/pom.mustache
+++ b/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/pom.mustache
@@ -278,9 +278,9 @@
${rxjava-version}
- com.github.akarnokd
- rxjava3-retrofit-adapter
- 3.0.0
+ com.squareup.retrofit2
+ adapter-rxjava3
+ ${retrofit-version}
{{/useRxJava3}}
{{#jackson}}
@@ -393,7 +393,7 @@
{{#usePlayWS}}
2.6.7
{{/usePlayWS}}
- 2.5.0
+ 2.11.0
{{#useRxJava2}}
2.1.1
{{/useRxJava2}}
diff --git a/samples/client/petstore/java/retrofit2-play26/build.gradle b/samples/client/petstore/java/retrofit2-play26/build.gradle
index 16873603b03..58c8e267f43 100644
--- a/samples/client/petstore/java/retrofit2-play26/build.gradle
+++ b/samples/client/petstore/java/retrofit2-play26/build.gradle
@@ -98,7 +98,7 @@ if(hasProperty('target') && target == 'android') {
ext {
oltu_version = "1.0.1"
- retrofit_version = "2.3.0"
+ retrofit_version = "2.11.0"
jackson_version = "2.17.1"
jackson_databind_version = "2.17.1"
javax_ws_rs_api_version = "2.1.1"
diff --git a/samples/client/petstore/java/retrofit2-play26/build.sbt b/samples/client/petstore/java/retrofit2-play26/build.sbt
index 5fd16c7014b..9dc6ffe3cb8 100644
--- a/samples/client/petstore/java/retrofit2-play26/build.sbt
+++ b/samples/client/petstore/java/retrofit2-play26/build.sbt
@@ -9,11 +9,11 @@ lazy val root = (project in file(".")).
publishArtifact in (Compile, packageDoc) := false,
resolvers += Resolver.mavenLocal,
libraryDependencies ++= Seq(
- "com.squareup.retrofit2" % "retrofit" % "2.3.0" % "compile",
- "com.squareup.retrofit2" % "converter-scalars" % "2.3.0" % "compile",
+ "com.squareup.retrofit2" % "retrofit" % "2.11.0" % "compile",
+ "com.squareup.retrofit2" % "converter-scalars" % "2.11.0" % "compile",
"com.typesafe.play" % "play-ahc-ws_2.12" % "2.6.7" % "compile",
"jakarta.validation" % "jakarta.validation-api" % "3.0.2" % "compile",
- "com.squareup.retrofit2" % "converter-jackson" % "2.3.0" % "compile",
+ "com.squareup.retrofit2" % "converter-jackson" % "2.11.0" % "compile",
"com.fasterxml.jackson.core" % "jackson-core" % "2.17.1" % "compile",
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.17.1" % "compile",
"com.fasterxml.jackson.core" % "jackson-databind" % "2.17.1" % "compile",
diff --git a/samples/client/petstore/java/retrofit2-play26/pom.xml b/samples/client/petstore/java/retrofit2-play26/pom.xml
index 9c926c73279..18ddf0efbb5 100644
--- a/samples/client/petstore/java/retrofit2-play26/pom.xml
+++ b/samples/client/petstore/java/retrofit2-play26/pom.xml
@@ -307,7 +307,7 @@
0.2.6
2.1.1
2.6.7
- 2.5.0
+ 2.11.0
2.1.1
3.0.2
1.0.1
diff --git a/samples/client/petstore/java/retrofit2/build.gradle b/samples/client/petstore/java/retrofit2/build.gradle
index d64edfad025..abb904cb405 100644
--- a/samples/client/petstore/java/retrofit2/build.gradle
+++ b/samples/client/petstore/java/retrofit2/build.gradle
@@ -98,7 +98,7 @@ if(hasProperty('target') && target == 'android') {
ext {
oltu_version = "1.0.1"
- retrofit_version = "2.3.0"
+ retrofit_version = "2.11.0"
jakarta_annotation_version = "1.3.5"
swagger_annotations_version = "1.5.22"
junit_version = "5.10.3"
diff --git a/samples/client/petstore/java/retrofit2/build.sbt b/samples/client/petstore/java/retrofit2/build.sbt
index 06a3a304b69..d5e93d7e716 100644
--- a/samples/client/petstore/java/retrofit2/build.sbt
+++ b/samples/client/petstore/java/retrofit2/build.sbt
@@ -9,9 +9,9 @@ lazy val root = (project in file(".")).
publishArtifact in (Compile, packageDoc) := false,
resolvers += Resolver.mavenLocal,
libraryDependencies ++= Seq(
- "com.squareup.retrofit2" % "retrofit" % "2.3.0" % "compile",
- "com.squareup.retrofit2" % "converter-scalars" % "2.3.0" % "compile",
- "com.squareup.retrofit2" % "converter-gson" % "2.3.0" % "compile",
+ "com.squareup.retrofit2" % "retrofit" % "2.11.0" % "compile",
+ "com.squareup.retrofit2" % "converter-scalars" % "2.11.0" % "compile",
+ "com.squareup.retrofit2" % "converter-gson" % "2.11.0" % "compile",
"io.swagger" % "swagger-annotations" % "1.5.21" % "compile",
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1" % "compile",
"io.gsonfire" % "gson-fire" % "1.9.0" % "compile",
diff --git a/samples/client/petstore/java/retrofit2/pom.xml b/samples/client/petstore/java/retrofit2/pom.xml
index e171f876690..91b4fb6f810 100644
--- a/samples/client/petstore/java/retrofit2/pom.xml
+++ b/samples/client/petstore/java/retrofit2/pom.xml
@@ -262,7 +262,7 @@
${java.version}
1.9.0
1.6.3
- 2.5.0
+ 2.11.0
1.3.5
1.0.1
5.10.3
diff --git a/samples/client/petstore/java/retrofit2rx2/build.gradle b/samples/client/petstore/java/retrofit2rx2/build.gradle
index f55f6d44fe9..1a8df8dbfdd 100644
--- a/samples/client/petstore/java/retrofit2rx2/build.gradle
+++ b/samples/client/petstore/java/retrofit2rx2/build.gradle
@@ -98,7 +98,7 @@ if(hasProperty('target') && target == 'android') {
ext {
oltu_version = "1.0.1"
- retrofit_version = "2.3.0"
+ retrofit_version = "2.11.0"
jakarta_annotation_version = "1.3.5"
swagger_annotations_version = "1.5.22"
junit_version = "5.10.3"
diff --git a/samples/client/petstore/java/retrofit2rx2/build.sbt b/samples/client/petstore/java/retrofit2rx2/build.sbt
index 1fc10a88b7a..7d7014bdc75 100644
--- a/samples/client/petstore/java/retrofit2rx2/build.sbt
+++ b/samples/client/petstore/java/retrofit2rx2/build.sbt
@@ -9,10 +9,10 @@ lazy val root = (project in file(".")).
publishArtifact in (Compile, packageDoc) := false,
resolvers += Resolver.mavenLocal,
libraryDependencies ++= Seq(
- "com.squareup.retrofit2" % "retrofit" % "2.3.0" % "compile",
- "com.squareup.retrofit2" % "converter-scalars" % "2.3.0" % "compile",
- "com.squareup.retrofit2" % "converter-gson" % "2.3.0" % "compile",
- "com.squareup.retrofit2" % "adapter-rxjava2" % "2.3.0" % "compile",
+ "com.squareup.retrofit2" % "retrofit" % "2.11.0" % "compile",
+ "com.squareup.retrofit2" % "converter-scalars" % "2.11.0" % "compile",
+ "com.squareup.retrofit2" % "converter-gson" % "2.11.0" % "compile",
+ "com.squareup.retrofit2" % "adapter-rxjava2" % "2.11.0" % "compile",
"io.reactivex.rxjava2" % "rxjava" % "2.1.1" % "compile",
"io.swagger" % "swagger-annotations" % "1.5.21" % "compile",
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1" % "compile",
diff --git a/samples/client/petstore/java/retrofit2rx2/pom.xml b/samples/client/petstore/java/retrofit2rx2/pom.xml
index 8ee5b1ab864..4a80f82a70d 100644
--- a/samples/client/petstore/java/retrofit2rx2/pom.xml
+++ b/samples/client/petstore/java/retrofit2rx2/pom.xml
@@ -272,7 +272,7 @@
${java.version}
1.9.0
1.6.3
- 2.5.0
+ 2.11.0
2.1.1
1.3.5
1.0.1
diff --git a/samples/client/petstore/java/retrofit2rx3/build.gradle b/samples/client/petstore/java/retrofit2rx3/build.gradle
index 5dd9b794a14..3968dccaec7 100644
--- a/samples/client/petstore/java/retrofit2rx3/build.gradle
+++ b/samples/client/petstore/java/retrofit2rx3/build.gradle
@@ -98,7 +98,7 @@ if(hasProperty('target') && target == 'android') {
ext {
oltu_version = "1.0.1"
- retrofit_version = "2.3.0"
+ retrofit_version = "2.11.0"
jakarta_annotation_version = "1.3.5"
swagger_annotations_version = "1.5.22"
junit_version = "5.10.3"
@@ -110,7 +110,7 @@ dependencies {
implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
implementation "com.squareup.retrofit2:converter-scalars:$retrofit_version"
implementation "com.squareup.retrofit2:converter-gson:$retrofit_version"
- implementation 'com.github.akarnokd:rxjava3-retrofit-adapter:3.0.0'
+ implementation 'com.squareup.retrofit2:adapter-rxjava3:$$retrofit_version'
implementation "io.reactivex.rxjava3:rxjava:$rx_java_version"
implementation "io.swagger:swagger-annotations:$swagger_annotations_version"
implementation "com.google.code.findbugs:jsr305:3.0.2"
diff --git a/samples/client/petstore/java/retrofit2rx3/build.sbt b/samples/client/petstore/java/retrofit2rx3/build.sbt
index 55c87017344..47a23fe5585 100644
--- a/samples/client/petstore/java/retrofit2rx3/build.sbt
+++ b/samples/client/petstore/java/retrofit2rx3/build.sbt
@@ -9,10 +9,10 @@ lazy val root = (project in file(".")).
publishArtifact in (Compile, packageDoc) := false,
resolvers += Resolver.mavenLocal,
libraryDependencies ++= Seq(
- "com.squareup.retrofit2" % "retrofit" % "2.3.0" % "compile",
- "com.squareup.retrofit2" % "converter-scalars" % "2.3.0" % "compile",
- "com.squareup.retrofit2" % "converter-gson" % "2.3.0" % "compile",
- "com.github.akarnokd" % "rxjava3-retrofit-adapter" % "3.0.0" % "compile",
+ "com.squareup.retrofit2" % "retrofit" % "2.11.0" % "compile",
+ "com.squareup.retrofit2" % "converter-scalars" % "2.11.0" % "compile",
+ "com.squareup.retrofit2" % "converter-gson" % "2.11.0" % "compile",
+ "com.squareup.retrofit2" % "adapter-rxjava3" % "2.11.0" % "compile",
"io.reactivex.rxjava3" % "rxjava" % "3.0.4" % "compile",
"io.swagger" % "swagger-annotations" % "1.5.21" % "compile",
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1" % "compile",
diff --git a/samples/client/petstore/java/retrofit2rx3/pom.xml b/samples/client/petstore/java/retrofit2rx3/pom.xml
index 508fd7747cd..19fae28dad5 100644
--- a/samples/client/petstore/java/retrofit2rx3/pom.xml
+++ b/samples/client/petstore/java/retrofit2rx3/pom.xml
@@ -247,9 +247,9 @@
${rxjava-version}
- com.github.akarnokd
- rxjava3-retrofit-adapter
- 3.0.0
+ com.squareup.retrofit2
+ adapter-rxjava3
+ ${retrofit-version}
jakarta.annotation
@@ -272,7 +272,7 @@
${java.version}
1.9.0
1.6.3
- 2.5.0
+ 2.11.0
3.0.4
1.3.5
1.0.1
diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/ApiClient.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/ApiClient.java
index 609df0513c6..50b19b584e4 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/ApiClient.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/ApiClient.java
@@ -11,7 +11,7 @@ import org.apache.oltu.oauth2.client.request.OAuthClientRequest.AuthenticationRe
import org.apache.oltu.oauth2.client.request.OAuthClientRequest.TokenRequestBuilder;
import retrofit2.Converter;
import retrofit2.Retrofit;
-import hu.akarnokd.rxjava3.retrofit.RxJava3CallAdapterFactory;
+import retrofit2.adapter.rxjava3.RxJava3CallAdapterFactory;
import retrofit2.converter.gson.GsonConverterFactory;
import retrofit2.converter.scalars.ScalarsConverterFactory;
import org.openapitools.client.auth.HttpBasicAuth;