bazel-java-sdk
bazel-java-sdk copied to clipboard
Question: **Is there any workaround to keep the `bazel-java-sdk` code compatible with remote execution?** I recently moved to a remote execution setup. I noticed now that the build event JSON...
IDE (VSC) "Support" via CLI/Bazel Rule (?) which just writes/updates respective configuration file
Given [the various issues I'm facing](https://github.com/vorburger/LearningBazel/blob/c8090ccb909c1b6a99044d6e0d3dec3fac5460b7/ToDo.md), I was wondering if at least initially looking more closely into a more simple and basic Bazel Java VSC integration than full-blows VSC extensions...
I think there may be some ways to make this area of the code easier to work with. - review the usages of this abstraction and impls - implement improvements...
I was in the middle of a refactor when I had to restart my machine. When I brought Eclipse back up, the classpath could not be computed because there were...
The InMemoryDependencyGraph implementation currently tracks dependencies with labels. It can model most workspaces, but there are cases like this, which break the model: - //a/b/c:foo depends on //d/e/f:bar - //d/e/f:bar...
In BazelPathHelper and a few other locations we have code checking if we are running on Windows: - [BazelPathHelper](https://github.com/salesforce/bazel-java-sdk/blob/master/sdk/bazel-java-sdk/src/main/java/com/salesforce/bazel/sdk/path/BazelPathHelper.java#L43) But this isn't good. We have an abstraction for that, to...
Progress events are the sketchy part of town for BEP. They contain unstructured output from the underlying rule executions, have weird formatting symbols (ncurses?), and contain the raw progress bar...
We are missing: - Tutorial - Design doc - Internals (for contributors, e.g. how to support a new rule kind, careful with paths for Windows)
A few things I want to add: - Extend the matrix to not just have OS, but also Bazel version testing (e.g. Bazel 1.x, 2.x, 3.x, 4.x) - Upload to...