├── .allstar └── binary_artifacts.yaml ├── .bazelversion ├── .bcr ├── config.yml ├── metadata.template.json ├── presubmit.yml └── source.template.json ├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── BUILD ├── CONTRIBUTING.md ├── LICENSE ├── MODULE.bazel ├── MODULE.bazel.lock ├── README.md ├── maven_install.json ├── testing ├── BUILD └── test_defs.bzl ├── third_party └── java │ ├── apache_bcel │ └── BUILD │ ├── asm │ └── BUILD │ ├── auto │ └── BUILD │ ├── byte_buddy │ └── BUILD │ ├── byte_buddy_agent │ └── BUILD │ ├── checker_framework │ └── BUILD │ ├── checker_framework_annotations │ └── BUILD │ ├── compile_testing │ └── BUILD │ ├── dagger │ └── BUILD │ ├── diffutils │ └── BUILD │ ├── error_prone │ └── BUILD │ ├── google_java_format │ └── BUILD │ ├── grpc │ └── BUILD │ ├── guava │ └── BUILD │ ├── hamcrest │ └── BUILD │ ├── incap │ └── BUILD │ ├── inject_common │ └── BUILD │ ├── javapoet │ └── BUILD │ ├── jspecify_annotations │ └── BUILD │ ├── jsr250_annotations │ └── BUILD │ ├── jsr305_annotations │ └── BUILD │ ├── jsr330_inject │ └── BUILD │ ├── junit │ └── BUILD │ ├── log4j │ └── BUILD │ ├── log4j2 │ └── BUILD │ ├── mockito │ └── BUILD │ ├── objenesis │ └── BUILD │ ├── protobuf │ └── BUILD │ ├── slf4j_api │ └── BUILD │ └── truth │ ├── BUILD │ └── extensions │ └── BUILD └── tools ├── jarjar ├── BUILD ├── expected_libs.dep ├── jarjar.bzl ├── jarjar_runner.sh ├── jarjar_validator.sh ├── test-library1.jar └── test-library2.jar ├── javadoc ├── BUILD └── javadoc.bzl └── maven ├── BUILD └── pom_file.bzl /.allstar/binary_artifacts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/.allstar/binary_artifacts.yaml -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 8.4.2 2 | -------------------------------------------------------------------------------- /.bcr/ config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/.bcr/ config.yml -------------------------------------------------------------------------------- /.bcr/metadata.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/.bcr/metadata.template.json -------------------------------------------------------------------------------- /.bcr/presubmit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/.bcr/presubmit.yml -------------------------------------------------------------------------------- /.bcr/source.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/.bcr/source.template.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/BUILD -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/LICENSE -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /MODULE.bazel.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/MODULE.bazel.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/README.md -------------------------------------------------------------------------------- /maven_install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/maven_install.json -------------------------------------------------------------------------------- /testing/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/testing/BUILD -------------------------------------------------------------------------------- /testing/test_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/testing/test_defs.bzl -------------------------------------------------------------------------------- /third_party/java/apache_bcel/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/apache_bcel/BUILD -------------------------------------------------------------------------------- /third_party/java/asm/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/asm/BUILD -------------------------------------------------------------------------------- /third_party/java/auto/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/auto/BUILD -------------------------------------------------------------------------------- /third_party/java/byte_buddy/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/byte_buddy/BUILD -------------------------------------------------------------------------------- /third_party/java/byte_buddy_agent/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/byte_buddy_agent/BUILD -------------------------------------------------------------------------------- /third_party/java/checker_framework/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/checker_framework/BUILD -------------------------------------------------------------------------------- /third_party/java/checker_framework_annotations/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/checker_framework_annotations/BUILD -------------------------------------------------------------------------------- /third_party/java/compile_testing/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/compile_testing/BUILD -------------------------------------------------------------------------------- /third_party/java/dagger/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/dagger/BUILD -------------------------------------------------------------------------------- /third_party/java/diffutils/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/diffutils/BUILD -------------------------------------------------------------------------------- /third_party/java/error_prone/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/error_prone/BUILD -------------------------------------------------------------------------------- /third_party/java/google_java_format/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/google_java_format/BUILD -------------------------------------------------------------------------------- /third_party/java/grpc/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/grpc/BUILD -------------------------------------------------------------------------------- /third_party/java/guava/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/guava/BUILD -------------------------------------------------------------------------------- /third_party/java/hamcrest/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/hamcrest/BUILD -------------------------------------------------------------------------------- /third_party/java/incap/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/incap/BUILD -------------------------------------------------------------------------------- /third_party/java/inject_common/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/inject_common/BUILD -------------------------------------------------------------------------------- /third_party/java/javapoet/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/javapoet/BUILD -------------------------------------------------------------------------------- /third_party/java/jspecify_annotations/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/jspecify_annotations/BUILD -------------------------------------------------------------------------------- /third_party/java/jsr250_annotations/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/jsr250_annotations/BUILD -------------------------------------------------------------------------------- /third_party/java/jsr305_annotations/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/jsr305_annotations/BUILD -------------------------------------------------------------------------------- /third_party/java/jsr330_inject/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/jsr330_inject/BUILD -------------------------------------------------------------------------------- /third_party/java/junit/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/junit/BUILD -------------------------------------------------------------------------------- /third_party/java/log4j/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/log4j/BUILD -------------------------------------------------------------------------------- /third_party/java/log4j2/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/log4j2/BUILD -------------------------------------------------------------------------------- /third_party/java/mockito/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/mockito/BUILD -------------------------------------------------------------------------------- /third_party/java/objenesis/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/objenesis/BUILD -------------------------------------------------------------------------------- /third_party/java/protobuf/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/protobuf/BUILD -------------------------------------------------------------------------------- /third_party/java/slf4j_api/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/slf4j_api/BUILD -------------------------------------------------------------------------------- /third_party/java/truth/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/truth/BUILD -------------------------------------------------------------------------------- /third_party/java/truth/extensions/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/third_party/java/truth/extensions/BUILD -------------------------------------------------------------------------------- /tools/jarjar/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/tools/jarjar/BUILD -------------------------------------------------------------------------------- /tools/jarjar/expected_libs.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/tools/jarjar/expected_libs.dep -------------------------------------------------------------------------------- /tools/jarjar/jarjar.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/tools/jarjar/jarjar.bzl -------------------------------------------------------------------------------- /tools/jarjar/jarjar_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/tools/jarjar/jarjar_runner.sh -------------------------------------------------------------------------------- /tools/jarjar/jarjar_validator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/tools/jarjar/jarjar_validator.sh -------------------------------------------------------------------------------- /tools/jarjar/test-library1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/tools/jarjar/test-library1.jar -------------------------------------------------------------------------------- /tools/jarjar/test-library2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/tools/jarjar/test-library2.jar -------------------------------------------------------------------------------- /tools/javadoc/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/tools/javadoc/BUILD -------------------------------------------------------------------------------- /tools/javadoc/javadoc.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/tools/javadoc/javadoc.bzl -------------------------------------------------------------------------------- /tools/maven/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/tools/maven/BUILD -------------------------------------------------------------------------------- /tools/maven/pom_file.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/bazel-common/HEAD/tools/maven/pom_file.bzl --------------------------------------------------------------------------------