splitter: 1.2.1 - Upgraded JDK-version & Spring Boot splitter-1.2.1
authorKai Moritz <kai@juplo.de>
Sun, 23 Jun 2024 08:53:08 +0000 (10:53 +0200)
committerKai Moritz <kai@juplo.de>
Sun, 23 Jun 2024 08:53:08 +0000 (10:53 +0200)
Dockerfile
pom.xml

index dd18a47..a6db085 100644 (file)
@@ -1,4 +1,4 @@
-FROM eclipse-temurin:17-jre
+FROM eclipse-temurin:21-jre-alpine
 COPY target/*.jar /opt/app.jar
 EXPOSE 8086
 ENTRYPOINT ["java", "-jar", "/opt/app.jar"]
diff --git a/pom.xml b/pom.xml
index 5b9505c..ca85673 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -5,15 +5,16 @@
        <parent>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-parent</artifactId>
-               <version>3.2.5</version>
+               <version>3.2.7</version>
                <relativePath/> <!-- lookup parent from repository -->
        </parent>
        <groupId>de.juplo.kafka.wordcount</groupId>
        <artifactId>splitter</artifactId>
-       <version>1.2.0</version>
+       <version>1.2.1</version>
        <name>Wordcount-Splitter</name>
        <description>Stream-processor of the multi-user wordcount-example, that splits the sentences up into single words</description>
        <properties>
+               <java.version>21</java.version>
                <docker-maven-plugin.version>0.44.0</docker-maven-plugin.version>
        </properties>
        <dependencies>