-
-
Notifications
You must be signed in to change notification settings - Fork 286
aspect based proto rules #548
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
Comments
What problems exactly? Because proto doesn't use the |
I think that currently the proto rules rebuild the transitive closure of all protos on each invocation. That is not what you want. It means unless you make sure you have no overlaps (your proto_library forms a tree, not a DAG), you will duplicate class files in the jars across targets. |
actually, it does not look like it has that bug, but you do need to manually build the graph correctly. The aspect approach automatically generates a 1 for 1 proto_library to action DAG. |
@ittaiz I think this issue can be closed |
Thanks! |
similar to #524 do the same for proto rules to fix the same issues.
The text was updated successfully, but these errors were encountered: