blob: 3627fc0170be386194e3432a6f84a24418caf5d1 [file] [log] [blame]
# Copyright 2018 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
workspace(name = "io_bazel_rules_kotlin")
load("//kotlin/internal/repositories:repositories.bzl", "github_archive")
github_archive(
name = "com_google_protobuf",
commit = "106ffc04be1abf3ff3399f54ccf149815b287dd9",
repo = "google/protobuf",
)
http_jar(
name = "bazel_deps",
sha256 = "05498224710808be9687f5b9a906d11dd29ad592020246d4cd1a26eeaed0735e",
url = "https://github.com/hsyed/bazel-deps/releases/download/v0.1.0/parseproject_deploy.jar",
)
http_archive(
name = "bazel_toolchains",
sha256 = "af577935530a3b5a1be02170682b1a0f6fa08641ff5b7785e44afd1435bce75a",
strip_prefix = "bazel-toolchains-b575a0bd6f1c4b8cdc346cdb3732e3aeffa6c21e",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/archive/b575a0bd6f1c4b8cdc346cdb3732e3aeffa6c21e.tar.gz",
"https://github.com/bazelbuild/bazel-toolchains/archive/b575a0bd6f1c4b8cdc346cdb3732e3aeffa6c21e.tar.gz",
],
)
load("//kotlin:kotlin.bzl", "kotlin_repositories", "kt_register_toolchains")
kotlin_repositories()
kt_register_toolchains()