Skip to content

Commit 7fe52f6

Browse files
committed
bazel: Format fix and dependency adaptions
- BUILD fix format issue - MODULE.bazel: Downgrade to rules_python again (needed for docs), added temporary workaround for various issues
1 parent 33a2ce4 commit 7fe52f6

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

BUILD

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@
1111
# SPDX-License-Identifier: Apache-2.0
1212
# *******************************************************************************
1313

14-
load("@score_tooling//:defs.bzl", "cli_helper", "copyright_checker", "dash_license_checker", "setup_starpls", "use_format_targets")
15-
1614
load("@score_docs_as_code//:docs.bzl", "docs")
15+
load("@score_tooling//:defs.bzl", "cli_helper", "copyright_checker", "dash_license_checker", "setup_starpls", "use_format_targets")
1716
load("//:project_config.bzl", "PROJECT_CONFIG")
1817

1918
# Creates all documentation targets:

MODULE.bazel

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module(
1818

1919
## Toolchains (dependencies and config)
2020
# python
21-
bazel_dep(name = "rules_python", version = "1.6.3")
21+
bazel_dep(name = "rules_python", version = "1.4.1")
2222

2323
PYTHON_VERSION = "3.12"
2424

@@ -71,7 +71,7 @@ bazel_dep(name = "score_docs_as_code", version = "1.3.0")
7171
# Module deps
7272
bazel_dep(name = "score-baselibs", version = "0.0.0")
7373
bazel_dep(name = "score_platform", version = "0.3.0")
74-
bazel_dep(name = "score_process", version = "1.1.2")
74+
bazel_dep(name = "score_process", version = "1.2.0")
7575

7676
## additional settings / config
7777
crate = use_extension("@rules_rust//crate_universe:extensions.bzl", "crate")
@@ -99,6 +99,20 @@ git_override(
9999

100100
git_override(
101101
module_name = "score-baselibs",
102-
commit = "b96af70bec2fd77fc7e7b3b26fd01d5f5eec9d5d",
102+
commit = "253571652d8f8e3df6e073ad17cb0cbb688278ee",
103103
remote = "https://github.com/eclipse-score/baselibs.git",
104104
)
105+
106+
# ToDo: needed to get //:docs running until 0.4.0 is officially released
107+
git_override(
108+
module_name = "score_platform",
109+
commit = "64eb8acf8436c60f1a6daaf6bc67763797792838",
110+
remote = "https://github.com/eclipse-score/score.git",
111+
)
112+
113+
# ToDo: workaround until https://github.com/eclipse-score/baselibs/issues/20 is clarified
114+
git_override(
115+
module_name = "score_tooling",
116+
commit = "c7a9a7995857b90ab1f1d825bd511a8bbde8070e",
117+
remote = "https://github.com/umaucher/tooling.git",
118+
)

0 commit comments

Comments
 (0)