diff --git a/jersey-client-rx/pom.xml b/jersey-client-rx/pom.xml
deleted file mode 100644
index 24894869a5..0000000000
--- a/jersey-client-rx/pom.xml
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
- 4.0.0
- com.baeldung.samples
- jersey-client-rx
- 1.0
- jar
-
-
- org.glassfish.jersey.inject
- jersey-hk2
- 2.27
-
-
- org.glassfish.jersey.core
- jersey-client
- 2.27
-
-
- org.glassfish.jersey.ext.rx
- jersey-rx-client-rxjava
- 2.27
-
-
- org.glassfish.jersey.ext.rx
- jersey-rx-client-rxjava2
- 2.27
-
-
- com.github.tomakehurst
- wiremock
- 1.58
- test
-
-
- org.junit.vintage
- junit-vintage-engine
- 5.2.0
-
-
- org.glassfish.jersey.media
- jersey-media-json-jackson
- 2.25
-
-
- com.fasterxml.jackson.jaxrs
- jackson-jaxrs-json-provider
- 2.4.1
-
-
- org.slf4j
- slf4j-jdk14
- 1.7.25
-
-
- org.assertj
- assertj-core
- 3.10.0
- test
-
-
-
- UTF-8
- 1.8
- 1.8
-
-
\ No newline at end of file
diff --git a/jersey-client-rx/readme.md b/jersey-client-rx/readme.md
deleted file mode 100644
index d1bc4e950b..0000000000
--- a/jersey-client-rx/readme.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# Fluent, Reactive Jersey Client Orchestration #
-
-### Sample code demonstrating the options for asynchronous, reactive RESTful service consumption with JAX-RS ###
diff --git a/spring-jersey/pom.xml b/spring-jersey/pom.xml
index 22adf265b1..40dc91a88d 100644
--- a/spring-jersey/pom.xml
+++ b/spring-jersey/pom.xml
@@ -76,6 +76,49 @@
test
+
+ org.glassfish.jersey.inject
+ jersey-hk2
+ ${jersey.version}
+
+
+ org.glassfish.jersey.ext.rx
+ jersey-rx-client-rxjava
+ ${jersey.version}
+
+
+ org.glassfish.jersey.ext.rx
+ jersey-rx-client-rxjava2
+ ${jersey.version}
+
+
+ com.github.tomakehurst
+ wiremock
+ 1.58
+ test
+
+
+ com.fasterxml.jackson.jaxrs
+ jackson-jaxrs-json-provider
+ 2.6.0
+
+
+ com.fasterxml.jackson.core
+ jackson-databind
+ 2.6.0
+
+
+ org.slf4j
+ slf4j-jdk14
+ 1.7.25
+
+
+ org.assertj
+ assertj-core
+ 3.10.0
+ test
+
+
@@ -170,7 +213,7 @@
- 2.26
+ 2.27
3.2.0
1.6.1
4.4.9
diff --git a/jersey-client-rx/src/test/java/com/baeldung/samples/jerseyrx/ClientOrchestrationIntegrationTest.java b/spring-jersey/src/test/java/com/baeldung/clientrx/ClientOrchestrationIntegrationTest.java
similarity index 99%
rename from jersey-client-rx/src/test/java/com/baeldung/samples/jerseyrx/ClientOrchestrationIntegrationTest.java
rename to spring-jersey/src/test/java/com/baeldung/clientrx/ClientOrchestrationIntegrationTest.java
index 88a8d67a7d..990279a481 100644
--- a/jersey-client-rx/src/test/java/com/baeldung/samples/jerseyrx/ClientOrchestrationIntegrationTest.java
+++ b/spring-jersey/src/test/java/com/baeldung/clientrx/ClientOrchestrationIntegrationTest.java
@@ -1,4 +1,4 @@
-package com.baeldung.samples.jerseyrx;
+package com.baeldung.clientrx;
import static com.github.tomakehurst.wiremock.client.WireMock.*;
import static org.assertj.core.api.Assertions.*;