-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Combine "maven_jar" and "java_import". Allow maven to work outside of WORKSPACE. #1439
Comments
FWIW, In order to combine |
At the very least, allow non-hermetic rules under "third_party" (or some On Wed, Jun 29, 2016, 18:02 David Z. Chen [email protected] wrote:
|
You can use |
@kchodorow Any updates about this particular issue? |
What in particular are you looking for? You can currently use load statements and we are working on allowing recursive workspaces (#1943). |
Right now, one can import maven artifacts via
maven_jar
. However, it only works within theWORKSPACE
file. This is problematic for organization, especially if many such jars are listed. For example, if I want these artifacts to be organized in a third-party directory structure, like:... the restriction on listing these all in
WORKSPACE
becomes problematic. On top of that, it seems thatmaven_jar
seems to serve much the same purpose asjava_import
, except thatjava_import
looks for the JAR file locally. Consider merging these into a single rule (where one can specify either "jars" for local jar files or "maven_artifact" for downloading from maven).The text was updated successfully, but these errors were encountered: