blob: c69d24ff0f6f0663a1c9ea503152f8fd5879e1cb [file] [log] [blame]
David Stanke3208b172018-01-31 12:45:04 -05001# Copyright 2018 The Bazel Authors. All rights reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14workspace(name="io_bazel_rules_kotlin")
hsyed4a410202018-05-07 13:31:26 +010015load("//kotlin/internal:bootstrap.bzl",github_archive="github_archive")
16
Hassan Syed0a60cad2018-07-07 18:02:00 +010017#github_archive(
18# name = "com_google_protobuf",
19# repo = "google/protobuf",
20# commit = "106ffc04be1abf3ff3399f54ccf149815b287dd9",
21#)
David Stanke3208b172018-01-31 12:45:04 -050022
hsyedd7ebd992018-07-04 17:25:30 +010023github_archive(
24 name = "build_bazel_rules_nodejs",
25 repo = "bazelbuild/rules_nodejs",
26 commit = "df3d2f577ec57ef5a622c809288a29545470c15d",
David Stanke3208b172018-01-31 12:45:04 -050027)
hsyedd7ebd992018-07-04 17:25:30 +010028load("@build_bazel_rules_nodejs//:defs.bzl", "node_repositories")
29node_repositories(package_json = [])
30
31github_archive(
32 name = "io_bazel_rules_sass",
33 repo = "bazelbuild/rules_sass",
34 commit = "38989d69ef3ba5847640f007fee5cc489be6ede9"
35)
36load("@io_bazel_rules_sass//sass:sass_repositories.bzl", "sass_repositories")
David Stanke3208b172018-01-31 12:45:04 -050037sass_repositories()
38
hsyedd7ebd992018-07-04 17:25:30 +010039github_archive(
40 name = "bazel_skylib",
41 repo = "bazelbuild/bazel-skylib",
42 commit = "6301f974f02350fe973d8631cf1bb87ab8d2a2bd"
43)
44
45github_archive(
David Stanke3208b172018-01-31 12:45:04 -050046 name = "io_bazel_skydoc",
hsyedd7ebd992018-07-04 17:25:30 +010047 repo = "bazelbuild/skydoc",
48 commit="f531844d137c7accc44d841c08a2a2a366688571"
David Stanke3208b172018-01-31 12:45:04 -050049)
50load("@io_bazel_skydoc//skylark:skylark.bzl", "skydoc_repositories")
51skydoc_repositories()
52
hsyed4a410202018-05-07 13:31:26 +010053http_jar(
54 name = "bazel_deps",
55 url = "https://github.com/axsy-dev/bazel-deps/releases/download/2/bazel-deps.jar",
56 sha256 = "bbd51188141f2bb09222a35675af25edbbb5b6507d779acb6c70c19e51cd67bd",
57)
58
hsyed36cf44f2018-02-15 23:55:14 +000059load("//kotlin:kotlin.bzl", "kotlin_repositories", "kt_register_toolchains")
David Stanke3208b172018-01-31 12:45:04 -050060kotlin_repositories()
hsyed36cf44f2018-02-15 23:55:14 +000061kt_register_toolchains()