From 776e5b64156fb49007356e45d460e03f10d6c7a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurenz=20Altenm=C3=BCller?= Date: Fri, 15 Nov 2024 15:24:52 +0100 Subject: [PATCH] iox-#2370: Fix Bzlmod dev_dependency setup --- MODULE.bazel | 8 ++------ doc/website/release-notes/iceoryx-unreleased.md | 1 + 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/MODULE.bazel b/MODULE.bazel index 9be233fda6..fe105821e8 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -8,9 +8,5 @@ bazel_dep(name = "cpptoml", version = "0.1.1") bazel_dep(name = "platforms", version = "0.0.10") bazel_dep(name = "rules_cc", version = "0.0.9") -bazel_dep( - name = "buildifier_prebuilt", - version = "7.1.2", - dev_dependency = True, -) -bazel_dep(name = "googletest", version = "1.15.2", dev_dependency = True) +bazel_dep(name = "buildifier_prebuilt", version = "7.1.2") +bazel_dep(name = "googletest", version = "1.15.2") diff --git a/doc/website/release-notes/iceoryx-unreleased.md b/doc/website/release-notes/iceoryx-unreleased.md index 8e617ba8be..086d44d4c7 100644 --- a/doc/website/release-notes/iceoryx-unreleased.md +++ b/doc/website/release-notes/iceoryx-unreleased.md @@ -144,6 +144,7 @@ - ssize_t: redefinition; different basic types [#2209](https://github.com/eclipse-iceoryx/iceoryx/issues/2209) - Fix bazel build on macos [#2345](https://github.com/eclipse-iceoryx/iceoryx/issues/2345) - Fix Bzlmod module name typo [#2364](https://github.com/eclipse-iceoryx/iceoryx/issues/2364) +- Fix Bzlmod dev_dependency setup [#2370](https://github.com/eclipse-iceoryx/iceoryx/issues/2370) **Refactoring:**