diff --git a/README.md b/README.md
index b6fbaab..c383c48 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,5 @@
# workshop-reactividad
Este repositorio contiene los recursos de ejemplo para demostrar como funciona la programacion reactiva en microservicios implementando el framework spring webflux, el mismo contiene un microservicios que consume una base de datos mongodb y otro que sirve de cliente para esta ultima
+
+## Validación de Creación de Pull Request
+Este cambio se realizó para validar que puedo crear pull requests en este repositorio.
diff --git a/cliente-normal/pom.xml b/cliente-normal/pom.xml
index 437f588..9233868 100644
--- a/cliente-normal/pom.xml
+++ b/cliente-normal/pom.xml
@@ -5,7 +5,7 @@
org.springframework.boot
spring-boot-starter-parent
- 2.6.4
+ 3.2.0
com.workshopreactividad
@@ -15,7 +15,7 @@
Cliente de ejemplo para implementar webflux conectando a mongodb
UTF-8
- 11
+ 17
diff --git a/cliente-webflux/pom.xml b/cliente-webflux/pom.xml
index d53d2c6..7de7b5d 100644
--- a/cliente-webflux/pom.xml
+++ b/cliente-webflux/pom.xml
@@ -5,7 +5,7 @@
org.springframework.boot
spring-boot-starter-parent
- 2.6.4
+ 3.2.0
com.workshopreactividad
@@ -15,7 +15,7 @@
Cliente de ejemplo para implementar webflux conectando a mongodb
UTF-8
- 11
+ 17
diff --git a/servidor-normal/pom.xml b/servidor-normal/pom.xml
index 9e0f991..7a961be 100644
--- a/servidor-normal/pom.xml
+++ b/servidor-normal/pom.xml
@@ -5,7 +5,7 @@
org.springframework.boot
spring-boot-starter-parent
- 2.6.4
+ 3.2.0
com.workshopreactividad
@@ -16,7 +16,7 @@
UTF-8
- 11
+ 17
diff --git a/servidor-webflux/pom.xml b/servidor-webflux/pom.xml
index 7aef610..40da9f2 100644
--- a/servidor-webflux/pom.xml
+++ b/servidor-webflux/pom.xml
@@ -5,7 +5,7 @@
org.springframework.boot
spring-boot-starter-parent
- 2.6.4
+ 3.2.0
com.workshopreactividad
@@ -16,7 +16,7 @@
UTF-8
- 11
+ 17
diff --git a/spring-websocket/build.gradle b/spring-websocket/build.gradle
index 44b7358..ebe4687 100644
--- a/spring-websocket/build.gradle
+++ b/spring-websocket/build.gradle
@@ -1,12 +1,12 @@
plugins {
- id 'org.springframework.boot' version '2.6.4'
- id 'io.spring.dependency-management' version '1.0.11.RELEASE'
+ id 'org.springframework.boot' version '3.2.0'
+ id 'io.spring.dependency-management' version '1.1.4'
id 'java'
}
group = 'com.websocket'
version = '0.0.1-SNAPSHOT'
-sourceCompatibility = '11'
+sourceCompatibility = '17'
configurations {
compileOnly {