Skip to content
Open
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
4 changes: 2 additions & 2 deletions .bazelrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
build --package_path=%workspace%:
build --package_path=%workspace%

sync --enable_workspace

build --java_runtime_version=remotejdk_21
build --tool_java_runtime_version=remotejdk_21
build --tool_java_runtime_version=remotejdk_21
4 changes: 2 additions & 2 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ module(
version = "0.0.0",
)

bazel_dep(name = "rules_kotlin", version = "2.1.0")
bazel_dep(name = "rules_kotlin", version = "2.4.0")
bazel_dep(name = "rules_jvm_external", version = "6.7")
bazel_dep(name = "rules_go", version = "0.59.0")
bazel_dep(name = "gazelle", version = "0.47.0")
bazel_dep(name = "rules_proto", version = "7.0.2")
bazel_dep(name = "grpc-java", version = "1.70.0")
bazel_dep(name = "grpc-java", version = "1.82.0")
bazel_dep(name = "rules_java", version = "8.14.0")

single_version_override(
Expand Down
1,265 changes: 172 additions & 1,093 deletions MODULE.bazel.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion kotlin.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ def setup_spring_allopen_plugin():
name = "spring_allopen",
id = "org.jetbrains.kotlin.allopen",
options = {"preset": "spring"},
deps = ["@maven//:org_jetbrains_kotlin_kotlin_allopen_compiler_plugin"],
deps = ["@rules_kotlin//kotlin/compiler:allopen-compiler-plugin"],
)
1 change: 1 addition & 0 deletions systems/configuration/configuration-application/deps.bzl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
KOTLIN_DEPS = [
"@maven//:org_springframework_boot_spring_boot_starter",
"@maven//:org_springframework_spring_tx",
"//systems/configuration/configuration-domain:main",
]

Expand Down
5 changes: 4 additions & 1 deletion systems/identity/identity-adapter-in/deps.bzl
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
KOTLIN_DEPS = []
KOTLIN_DEPS = [
"@maven//:org_springframework_boot_spring_boot_starter_web",
"//systems/identity/identity-application:main",
]

TEST_DEPS = [
"@maven//:junit_junit",
Expand Down
4 changes: 3 additions & 1 deletion systems/identity/identity-application/deps.bzl
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
KOTLIN_DEPS = []
KOTLIN_DEPS = [
"@maven//:org_springframework_boot_spring_boot_starter",
]

TEST_DEPS = [
"@maven//:junit_junit",
Expand Down
Loading