-
Notifications
You must be signed in to change notification settings - Fork 14.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HOTFIX: remove PageView example to support Java11 for :streams:examples module #19052
base: 4.0
Are you sure you want to change the base?
Conversation
…es module The PageView example depends on Connect to pull in Json (de)serializers, but Connect does not support Java11 any longer. To allow supporting Java11 for the Kafka Streams examples, this PR removes the PageView examples and Connect dependency.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR!
LGTM!
Co-authored-by: Greg Harris <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mjsax Thanks for finding this.
build.gradle
Outdated
@@ -51,7 +51,7 @@ ext { | |||
gradleVersion = versions.gradle | |||
minClientJavaVersion = 11 | |||
minNonClientJavaVersion = 17 | |||
modulesNeedingJava11 = [":clients", ":generator", ":streams", ":streams:test-utils", ":streams-scala", ":test-common:test-common-util"] | |||
modulesNeedingJava11 = [":clients", ":generator", ":streams", ":streams:examples", ":streams:test-utils", ":streams-scala", ":test-common:test-common-util"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice find, and should we add examples
module too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PageView example depends on Connect to pull in Json (de)serializers, but Connect does not support Java11 any longer.
To allow supporting Java11 for the Kafka Streams examples, this PR removes the PageView examples and Connect dependency.