-
Notifications
You must be signed in to change notification settings - Fork 20
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
kotlin_compile
rule does not include all transitive dependencies
#47
Comments
After removing everything else and only kept the 2 libraries,
But I didn't figure out a way to pass them to |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
An example is at https://github.com/fishy/onepwd/tree/c56928e42bc521df2be9f975958019718dae53f5. In https://github.com/fishy/onepwd/blob/c56928e42bc521df2be9f975958019718dae53f5/BUILD#L40-L50, only
com_android_support_appcompat_v7_27_0_1
andcom_android_support_preference_v7_27_0_1
are actually directly depended, and everything else inaar_deps
are just transitive dependencies from those 2 libraries (you can see that on https://raw.githubusercontent.com/aj-michael/gmaven_rules/master/gmaven.bzl).But if I remove everything else and only kept the 2 libraries,
bazel build :onepwd_compile
will fail, indicates that the transitive dependencies are not passed to thekotlin_compile
rule correctly.The text was updated successfully, but these errors were encountered: