Skip to content

Commit 711a98f

Browse files
committed
Update skylib and fix deps
1 parent 2ae8ccd commit 711a98f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

MODULE.bazel

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module(
22
name = "rules_kotlin",
3-
version = "1.8.1",
3+
version = "2.1.0",
44
compatibility_level = 1,
55
repo_name = "rules_kotlin",
66
)
@@ -36,7 +36,7 @@ use_repo(remote_android_extensions, "android_gmaven_r8", "android_tools")
3636
# TODO(bencodes) A bunch of these dependencies need to be marked as dev_dependencies but before we can do that
3737
# we need to sort out a few cases around how these rules are consumed in various ways.
3838

39-
bazel_dep(name = "rules_jvm_external", version = "5.3")
39+
bazel_dep(name = "rules_jvm_external", version = "6.3")
4040
bazel_dep(name = "bazel_ci_rules", version = "1.0.0")
4141

4242
rbe_preconfig = use_repo_rule("@bazel_ci_rules//:rbe_repo.bzl", "rbe_preconfig")
@@ -98,8 +98,8 @@ maven.override(
9898
)
9999
use_repo(maven, "kotlin_rules_maven", "unpinned_kotlin_rules_maven")
100100

101-
bazel_dep(name = "rules_pkg", version = "0.7.0")
102-
bazel_dep(name = "stardoc", version = "0.7.0", repo_name = "io_bazel_stardoc")
101+
bazel_dep(name = "rules_pkg", version = "1.0.1")
102+
bazel_dep(name = "stardoc", version = "0.7.2", repo_name = "io_bazel_stardoc")
103103
bazel_dep(name = "rules_proto", version = "5.3.0-21.7")
104104

105105
bazel_dep(name = "rules_testing", version = "0.5.0", dev_dependency = True)

kotlin/BUILD

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
load("@io_bazel_stardoc//stardoc:stardoc.bzl", "stardoc")
2-
31
# Copyright 2018 The Bazel Authors. All rights reserved.
42
#
53
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,6 +11,7 @@ load("@io_bazel_stardoc//stardoc:stardoc.bzl", "stardoc")
1311
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1412
# See the License for the specific language governing permissions and
1513
# limitations under the License.
14+
load("@io_bazel_stardoc//stardoc:stardoc.bzl", "stardoc")
1615
load("//src/main/starlark/release:packager.bzl", "release_archive")
1716

1817
release_archive(

kotlin/internal/BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,6 @@ bzl_library(
4646
"//src/main/starlark/core/compile",
4747
"//src/main/starlark/core/options",
4848
"@rules_java//java:rules",
49+
"@rules_java//java/private:proto_support",
4950
],
5051
)

0 commit comments

Comments
 (0)