@@ -24,6 +24,24 @@ bazel_dep(name = "rules_tsickle", version = "1.0.0")
2424bazel_dep (name = "rules_web_testing_java" , version = "0.4.1" )
2525bazel_dep (name = "rules_webtesting" , version = "0.4.1" )
2626
27+ # google_bazel_common override is needed for @closure-compiler
28+ git_override (
29+ module_name = "google_bazel_common" ,
30+ # Pin to newer version to fix b/408030907
31+ commit = "2cab52929507935aa43d460a3976d3bedc814d3a" ,
32+ remote = "https://github.com/google/bazel-common" ,
33+ )
34+
35+ local_path_override (
36+ module_name = "rules_tsickle" ,
37+ path = "/Users/pcj/go/src/github.com/stackb/rules_tsickle" ,
38+ )
39+
40+ # local_path_override(
41+ # module_name = "closure-compiler",
42+ # path = "/Users/pcj/go/src/github.com/google/closure-compiler",
43+ # )
44+
2745# -------------------------------------------------------------------
2846# Overrides
2947# -------------------------------------------------------------------
@@ -136,6 +154,14 @@ platform_http_file(
136154 ],
137155)
138156
157+ # -------------------------------------------------------------------
158+ # java configuration
159+ # -------------------------------------------------------------------
160+
161+ # Compatibility layer
162+ compat = use_extension ("@rules_java//java:rules_java_deps.bzl" , "compatibility_proxy" )
163+ use_repo (compat , "compatibility_proxy" )
164+
139165# -------------------------------------------------------------------
140166# maven configuration
141167# -------------------------------------------------------------------
@@ -175,7 +201,8 @@ maven.artifact(
175201 name = "maven_rules_closure" ,
176202 artifact = "closure-compiler" ,
177203 group = "com.google.javascript" ,
178- version = "v20250402" , # Using maven.artifact here because the version number vxxxxx cannot parsed correctly.
204+ # version = "v20250402", # Using maven.artifact here because the version number vxxxxx cannot parsed correctly.
205+ version = "v20250820" , # Using maven.artifact here because the version number vxxxxx cannot parsed correctly.
179206)
180207maven .override (
181208 name = "maven_rules_closure" ,
0 commit comments