-
Notifications
You must be signed in to change notification settings - Fork 4
feat: migrate to gradle #294
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
base: main
Are you sure you want to change the base?
Conversation
core/build.gradle.kts
Outdated
|
||
java { | ||
withJavadocJar() | ||
sourceCompatibility = JavaVersion.VERSION_17 |
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.
It should be version 11 in theory
it was needed by the Dataflow template back then but the Dataflow template now builds with a JDK 17.
The Spark connector (where we might add support for the spec) is currently on JDK 8, but Spark 4 support means we'll move to JDK 17 soon.
The Kafka connector is on JDK 11, but I don't think we have any plans to add import-spec there.
1dffb22
to
ce03018
Compare
First step in working towards a kotlin multi-platform library is changing maven for gradle and KMP is only supported by gradle.
Note formatting is a bit annoying due to diffplug/spotless#2625