-
Notifications
You must be signed in to change notification settings - Fork 284
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
allow to deploy_manifest_lines in scala_binary and scala_test #166
Comments
I'm all for adding support for this (and generally anything in the java rules that we don't have now to maximize compatibility). It shouldn't be too hard to add. Would you like to take a stab? |
Sure thing! |
BTW- why did bazel choose to limit this property only to "deploy_manifest"? |
@or-shachar I don't know the answer. |
java_library does not have a deploy jar. Now, this does expose a different but related question of "why doesn't java_library have a deploy jar?". I don't know. I can think of a couple of candidates:
I have been a little concerned about the performance of having deploy_jar for every scala_library as a scala repo grows. Ignoring java interop (which will be solved separately), where else have the library deploy_jars been helpful? |
It was solved? I have the same problem:
BUILD file:
|
Hi,
Java rules has this useful ability to add manifest lines: https://bazel.build/versions/master/docs/be/java.html#java_binary.deploy_manifest_lines
Our rules (
scala_binary
andscala_test
) lack this property. We need to allow this behavior to happen in our rules as well.The text was updated successfully, but these errors were encountered: