recorder: 1.0.2 - Upgraded Spring Boot 2.5.4 -> 3.0.2
authorKai Moritz <kai@juplo.de>
Sat, 4 Feb 2023 09:17:39 +0000 (10:17 +0100)
committerKai Moritz <kai@juplo.de>
Sat, 4 Feb 2023 09:31:34 +0000 (10:31 +0100)
pom.xml
src/main/java/de/juplo/kafka/wordcount/recorder/RecorderController.java

diff --git a/pom.xml b/pom.xml
index edcedf5..44a6cd1 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -5,18 +5,16 @@
        <parent>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-parent</artifactId>
-               <version>2.5.4</version>
+               <version>3.0.2</version>
                <relativePath/> <!-- lookup parent from repository -->
        </parent>
        <groupId>de.juplo.kafka.wordcount</groupId>
        <artifactId>recorder</artifactId>
-       <version>1.0.1</version>
+       <version>1.0.2</version>
        <name>Wordcount-Recorder</name>
        <description>Recorder-service of the multi-user wordcount-example</description>
        <properties>
                <docker-maven-plugin.version>0.33.0</docker-maven-plugin.version>
-               <java.version>11</java.version>
-               <kafka.version>2.8.0</kafka.version>
        </properties>
        <dependencies>
                <dependency>
index 5fe69ad..f7e32e2 100644 (file)
@@ -11,7 +11,7 @@ import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RestController;
 import org.springframework.web.context.request.async.DeferredResult;
 
-import javax.validation.constraints.NotEmpty;
+import jakarta.validation.constraints.NotEmpty;
 
 
 @RestController