Tharaka De Silva
Tharaka De Silva
I am writing my own set of rules on top of `rules_kotlin`, but my stardoc generation is failing due to the "limited visibility" in `rules_kotlin`. There is an open issue...
With JDK 21, `this-escape` issues are now being flagged by the compiler: https://bugs.openjdk.org/browse/JDK-8299995 by default and we started seeing these errors in our project: ``` external/io_grpc_grpc_java/api/src/main/java/io/grpc/StatusRuntimeException.java:50: warning: [this-escape] possible 'this'...
`rules_jvm_external` changes: ```python maven.artifact("com.mebigfatguy.sb-contrib", "sb-contrib", "7.6.4"), maven.artifact("jp.skypencil.findbugs.slf4j", "bug-pattern", "1.4.2"), ``` The `spotbugs_config`: ```python spotbugs_config( name = "spotbugs-default-config", effort = "max", fail_on_warning = True, plugin_list = [ "@maven//:com_h3xstream_findsecbugs_findsecbugs_plugin", "@maven//:com_mebigfatguy_sb_contrib_sb_contrib", ], visibility...
When configuring additional paths for Spring Boot actuator health groups ('readiness', 'liveness', etc.), unrelated health indicators to those groups unexpectedly start failing. This behavior presents risks for production environments, potentially...
In Artifactory, we have a repository called `maven` and inside maven, we can assume we have a library under `maven/my/org/my-library/0.3.0-SNAPSHOT`. In this index, we have the following files: - maven-metadata.xml...
We might be doing a maven.artifact for a coordinate that is coming from a BOM with the same version. Would be nice to get a warning that tells me to...
I am running the pinning with: ```shell RJE_MAX_THREADS=20 RJE_UNSAFE_CACHE=0 REPIN=1 bazel run @maven//:pin ``` Running the command multiple times could get you back to the original state as well... Here's...
We started using the BOM resolver and I've been asked a couple of times this week which BOM is this version coming from. Would be nice to have this information...
This is to help caching in Gitlab CI. Gitlab CI only allows caching things that are in the cloned repo. When working with Maven, we do something like `-Dmaven.repo.local=$CI_PROJECT_DIR/.m2/repository`. Would...
I've encountered an issue where running `bazel run @unpinned_maven//:pin` multiple times creates new resolver folders in the `/var/folders/bx/4rzt0r395ms8gx4z0htxt00w0000gn/T` directory with each execution. This behavior has led to significant disk space...