-
Notifications
You must be signed in to change notification settings - Fork 14.7k
MINOR: fix some tasks in build.gradle after Gradle version upgrade 8 -->> 9 #20684
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
Conversation
@DL1231 thanks for this patch. Please verify the fixed tasks on your local. |
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.
@chia7712 let me digg around this one. |
go ahead |
Wrong place for s comment, mobile GitHub app is not precise. |
don't worry. please file a PR for #20684 (comment) if you have other approach. |
Otherwise, we will file a patch to add |
This should do the trick 🤞 And please pardon me for spamming via GitHuib mobile app above 🙂 |
Thanks for the discussion. I’ve opened a PR #20695 to address this issue. |
…eMode (#20695) In Scala/Java joint compilation, builds that run with `keepAliveMode=SESSION` can fail in the `:core:compileScala` task. This happens when `javac` is given a non-existent Java output directory on its classpath. ``` Unexpected javac output: warning: [path] bad path element ".../core/build/classes/java/main": no such file or directory error: warnings found and -Werror specified ``` This issue occurs after a clean build because `core/build/classes/java/main` does not exist, as Java classes are written to `classes/scala/main` during joint compilation. With `-Werror` enabled, the resulting `[path]` warning is treated as an error and stops the build. This PR adds a workaround scoped to **SESSION** builds, while continuing to investigate the underlying classpath assembly logic during joint compilation. Related discussion: #20684 (comment) Tracked by: [KAFKA-19786](https://issues.apache.org/jira/browse/KAFKA-19786) Reviewers: Ken Huang <[email protected]>, Chia-Ping Tsai <[email protected]>
from: #19513 (comment)
unitTest
andintegrationTest
;name
to a method callname()
forKeepAliveMode
.Reviewers: Ken Huang [email protected], dejan2609
[email protected], Chia-Ping Tsai [email protected]