-
Notifications
You must be signed in to change notification settings - Fork 28.3k
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
[SPARK-20264][SQL] asm should be non-test dependency in sql/core #17574
Conversation
Test build #75618 has started for PR 17574 at commit |
Test build #3648 has finished for PR 17574 at commit
|
retest this please. |
Do we need it as a normal dependency? Looks like sql/core doesn't use it and the building works without this dependency. Sorry if I am missing something. |
Test build #75623 has finished for PR 17574 at commit
|
retest this please. |
Test build #75626 has finished for PR 17574 at commit
|
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.
LGTM
Thanks! Merging to master/2.1 |
## What changes were proposed in this pull request? sq/core module currently declares asm as a test scope dependency. Transitively it should actually be a normal dependency since the actual core module defines it. This occasionally confuses IntelliJ. ## How was this patch tested? N/A - This is a build change. Author: Reynold Xin <rxin@databricks.com> Closes #17574 from rxin/SPARK-20264. (cherry picked from commit 7bfa05e) Signed-off-by: Xiao Li <gatorsmile@gmail.com>
@gatorsmile Thanks for the search. I don't see any usage of it in |
You can make a try. |
Meh let's not bother. There isn't any harm in the current setup since it's already a transitive dependency. Why waste time on those? |
BTW making it |
What changes were proposed in this pull request?
sq/core module currently declares asm as a test scope dependency. Transitively it should actually be a normal dependency since the actual core module defines it. This occasionally confuses IntelliJ.
How was this patch tested?
N/A - This is a build change.