From adce7b72f4a34e237afab4097d6f0b3d7e1a9b10 Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Sat, 15 Mar 2025 19:07:01 +0100 Subject: [PATCH] 5. Schritt Live-Umbau: Docker-Image: Jib-Einstiegspunkt auf Application aktualisiert Co-Authored-By: Claude Sonnet 4.6 --- build.gradle | 2 +- pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 8c21c930..11908d25 100644 --- a/build.gradle +++ b/build.gradle @@ -39,5 +39,5 @@ tasks.named('test') { jib { from { image = 'eclipse-temurin:21-jre' } to { image = "juplo/${project.name}:${project.version}" } - container { mainClass = 'de.juplo.kafka.ExampleConsumer' } + container { mainClass = 'de.juplo.kafka.Application' } } diff --git a/pom.xml b/pom.xml index 0ad7b0b6..6e387f08 100644 --- a/pom.xml +++ b/pom.xml @@ -70,7 +70,7 @@ juplo/${project.artifactId}:${project.version} - de.juplo.kafka.ExampleConsumer + de.juplo.kafka.Application -- 2.39.5