This is an automated email from the ASF dual-hosted git repository. mjsax pushed a commit to branch 4.0 in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/4.0 by this push: new 6974007881c KAFKA-8116: Update Kafka Streams archetype for Java 11 (#18471) 6974007881c is described below commit 6974007881caa2ad4e3d523973527784ac795e8e 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 3dad3ae7f8e..8b84c17024a 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.0.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>