Skip to content
This repository was archived by the owner on Oct 9, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
bazel-*
__pycache__
**.pyc
venv
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.1
1.7.0
11 changes: 6 additions & 5 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -91,21 +91,22 @@ com_github_grpc_grpc_deps()
# Load Grakn Core dependencies #
################################


load("@graknlabs_grakn_core//dependencies/graknlabs:dependencies.bzl",
"graknlabs_graql", "graknlabs_common", "graknlabs_client_java", "graknlabs_console", "graknlabs_benchmark")
"graknlabs_graql", "graknlabs_common", "graknlabs_client_java", "graknlabs_console", "graknlabs_grabl_tracing")
graknlabs_graql()
graknlabs_common()
graknlabs_client_java()
graknlabs_console()
graknlabs_benchmark()
graknlabs_grabl_tracing()

load("@graknlabs_grakn_core//dependencies/maven:dependencies.bzl",
graknlabs_grakn_core_maven_dependencies = "maven_dependencies")
graknlabs_grakn_core_maven_dependencies()

load("@graknlabs_benchmark//dependencies/maven:dependencies.bzl",
graknlabs_benchmark_maven_dependencies = "maven_dependencies")
graknlabs_benchmark_maven_dependencies()
load("@graknlabs_grabl_tracing//dependencies/maven:dependencies.bzl",
graknlabs_grabl_tracing_maven_dependencies = "maven_dependencies")
graknlabs_grabl_tracing_maven_dependencies()

# Load Graql dependencies for Grakn Core

Expand Down
4 changes: 2 additions & 2 deletions dependencies/graknlabs/dependencies.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ def graknlabs_grakn_core():
git_repository(
name = "graknlabs_grakn_core",
remote = "https://github.com/graknlabs/grakn",
tag = "1.6.2" # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_grakn_core
commit = "fda48ff1557e674b061c2df135fe04634110c42f" # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_grakn_core
)

def graknlabs_protocol():
git_repository(
name = "graknlabs_protocol",
remote = "https://github.com/graknlabs/protocol",
tag = "1.0.4" # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_protocol
commit = "e608f85401fc3eee3f6fe631748378246eaacc55" # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_protocol
)
Loading