This is an automated email from the ASF dual-hosted git repository.

mjsax pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 0e831d0840d KAFKA-8116: Update Kafka Streams archetype for Java 11 
(#18471)
0e831d0840d is described below

commit 0e831d0840d45d39d2facba34633f0ab426b1b65
Author: Matthias J. Sax <matth...@confluent.io>
AuthorDate: Fri Jan 10 15:45:39 2025 -0800

    KAFKA-8116: Update Kafka Streams archetype for Java 11 (#18471)
    
    Reviewers: Ismael Juma <ism...@juma.me.uk>, Bill Bejeck <b...@confluent.io>
---
 .../src/main/resources/archetype-resources/pom.xml | 27 +++-------------------
 1 file changed, 3 insertions(+), 24 deletions(-)

diff --git 
a/streams/quickstart/java/src/main/resources/archetype-resources/pom.xml 
b/streams/quickstart/java/src/main/resources/archetype-resources/pom.xml
index 963af59622c..133d0ee951e 100644
--- a/streams/quickstart/java/src/main/resources/archetype-resources/pom.xml
+++ b/streams/quickstart/java/src/main/resources/archetype-resources/pom.xml
@@ -30,7 +30,7 @@
     <properties>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <kafka.version>4.1.0-SNAPSHOT</kafka.version>
-        <slf4j.version>1.7.36</slf4j.version>
+        <slf4j.version>2.0.16</slf4j.version>
     </properties>
 
     <repositories>
@@ -47,41 +47,20 @@
         </repository>
     </repositories>
 
-    <!--
-               Execute "mvn clean package -Pbuild-jar"
-               to build a jar file out of this project!
-       -->
-
     <build>
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-compiler-plugin</artifactId>
-                <version>3.1</version>
+                <version>3.13.0</version>
                 <configuration>
-                    <source>1.8</source>
-                    <target>1.8</target>
+                    <release>11</release>
                 </configuration>
             </plugin>
         </plugins>
 
         <pluginManagement>
             <plugins>
-                <plugin>
-                    <artifactId>maven-compiler-plugin</artifactId>
-                    <configuration>
-                        <source>1.8</source>
-                        <target>1.8</target>
-                        <compilerId>jdt</compilerId>
-                    </configuration>
-                    <dependencies>
-                        <dependency>
-                            <groupId>org.eclipse.tycho</groupId>
-                            <artifactId>tycho-compiler-jdt</artifactId>
-                            <version>0.21.0</version>
-                        </dependency>
-                    </dependencies>
-                </plugin>
                 <plugin>
                     <groupId>org.eclipse.m2e</groupId>
                     <artifactId>lifecycle-mapping</artifactId>

Reply via email to