Dmytro Kashyn
Dmytro Kashyn
> Doesn't work for me. > > I tested it on Linux by running the `getPendingExternalDeps_followJavaDeps_allBuilt` test from this repo. I placed a breakpoint inside it and clicked `Compile and...
`osgi` and `aspectj` annotations(?) are not recognized by `ijar` and logs are flooded with the noise
Not yet, but if you add `org.osgi.core-4.3.0.jar` as a dep to ANY project you'll see at least 4 of the warnings related to OSGI bit. I can try to locate...
`osgi` and `aspectj` annotations(?) are not recognized by `ijar` and logs are flooded with the noise
Another one is `INFO: From Extracting interface for jar external/org_apache_ws_commons_axiom_axiom_dom/axiom-dom-1.2.20.jar:` With endless output like ``` INFO: From Extracting interface for jar external/org_apache_ws_commons_axiom_axiom_dom/axiom-dom-1.2.20.jar: ijar: skipping unknown attribute: "org.aspectj.weaver.MethodDeclarationLineNumber". ijar: skipping unknown...
`osgi` and `aspectj` annotations(?) are not recognized by `ijar` and logs are flooded with the noise
``` ./ijar axiom-dom-1.2.20.jar axiom-dom-1.2.20-ijar.jar --target_label @@org_apache_ws_commons_axiom_axiom_dom//:org_apache_ws_commons_axiom_axiom_dom ijar: skipping unknown attribute: "org.aspectj.weaver.MethodDeclarationLineNumber". ijar: skipping unknown attribute: "org.aspectj.weaver.MethodDeclarationLineNumber". ijar: skipping unknown attribute: "org.aspectj.weaver.MethodDeclarationLineNumber". ijar: skipping unknown attribute: "org.aspectj.weaver.MethodDeclarationLineNumber". ``` https://repo1.maven.org/maven2/org/apache/ws/commons/axiom/axiom-dom/1.2.20/
`osgi` and `aspectj` annotations(?) are not recognized by `ijar` and logs are flooded with the noise
In our cases this is some `external` dep. Is it even beneficial to use `ijar` in this case? While it might help with the code that we own for external...
`osgi` and `aspectj` annotations(?) are not recognized by `ijar` and logs are flooded with the noise
I'll try `--output_filter` since java header compilation is something we are only experimenting with for now. It is not speeding things up for us unless we use RBE and slowing...
`osgi` and `aspectj` annotations(?) are not recognized by `ijar` and logs are flooded with the noise
still seeing this with 7.2.0rc1
@cushon @hvadehra `@ReturnValueIgnored` (and `@CheckReturnValues` as an alias) is disabled in `rules_java` https://github.com/bazelbuild/rules_java/blob/ea611cfc6951dd734e2acfd56bd6338490101ef1/toolchains/default_java_toolchain.bzl#L63 and leaking to projects that using Bazel. Which results in those inspections disabled as well via `DEFAULT_JAVACOPTS`.
There is a good/guaranteed chance that https://github.com/bazelbuild/intellij/pull/7081/files fixes the tests.
I think this is not new and was like this before. We haven't tried this flow and I have some doubts that this has changed recently...