Skip to content

Commit 077ce7c

Browse files
authoredMay 14, 2021
Upgrade @rules_antlr usage (#1)
## What is the goal of this PR? Update usage of `@rules_antlr` to match latest `@vaticle_dependencies` ## What are the changes implemented in this PR? Use the latest release of `rules_antlr` and update usage accordingly
1 parent 73ab5e4 commit 077ce7c

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed
 

‎WORKSPACE

+4-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,10 @@ python_deps()
5050
# Load //builder/antlr
5151
load("@vaticle_dependencies//builder/antlr:deps.bzl", antlr_deps = "deps")
5252
antlr_deps()
53-
load("@rules_antlr//antlr:deps.bzl", "antlr_dependencies")
54-
antlr_dependencies()
53+
54+
load("@rules_antlr//antlr:lang.bzl", "JAVA")
55+
load("@rules_antlr//antlr:repositories.bzl", "rules_antlr_dependencies")
56+
rules_antlr_dependencies("4.7.2", JAVA)
5557

5658
# Load //tool/common
5759
load("@vaticle_dependencies//tool/common:deps.bzl", "vaticle_dependencies_ci_pip",

‎dependencies/vaticle/repositories.bzl

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ def vaticle_dependencies():
2525
git_repository(
2626
name = "vaticle_dependencies",
2727
remote = "https://github.com/vaticle/dependencies",
28-
commit = "ca41a24880f0597b314beb2233518004e0467a62", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies
28+
commit = "81520f0787ce5e78935144241b66c3b02bf7ed5d", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies
2929
)
3030

3131
def vaticle_typeql():
3232
git_repository(
3333
name = "vaticle_typeql",
3434
remote = "https://github.com/vaticle/typeql",
35-
commit = "cd6558d11213a08f0079443ef586edbbfde929e2", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typeql
35+
commit = "df4b0f9caead77bbada2c85c26c5fcf9c252ff5f", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typeql
3636
)
3737

3838
def vaticle_typedb_common():

0 commit comments

Comments
 (0)