David Stanke | 3208b17 | 2018-01-31 12:45:04 -0500 | [diff] [blame] | 1 | # 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. |
| 14 | workspace(name="io_bazel_rules_kotlin") |
hsyed | 4a41020 | 2018-05-07 13:31:26 +0100 | [diff] [blame] | 15 | load("//kotlin/internal:bootstrap.bzl",github_archive="github_archive") |
| 16 | |
Hassan Syed | 0a60cad | 2018-07-07 18:02:00 +0100 | [diff] [blame] | 17 | #github_archive( |
| 18 | # name = "com_google_protobuf", |
| 19 | # repo = "google/protobuf", |
| 20 | # commit = "106ffc04be1abf3ff3399f54ccf149815b287dd9", |
| 21 | #) |
David Stanke | 3208b17 | 2018-01-31 12:45:04 -0500 | [diff] [blame] | 22 | |
hsyed | d7ebd99 | 2018-07-04 17:25:30 +0100 | [diff] [blame] | 23 | github_archive( |
| 24 | name = "build_bazel_rules_nodejs", |
| 25 | repo = "bazelbuild/rules_nodejs", |
| 26 | commit = "df3d2f577ec57ef5a622c809288a29545470c15d", |
David Stanke | 3208b17 | 2018-01-31 12:45:04 -0500 | [diff] [blame] | 27 | ) |
hsyed | d7ebd99 | 2018-07-04 17:25:30 +0100 | [diff] [blame] | 28 | load("@build_bazel_rules_nodejs//:defs.bzl", "node_repositories") |
| 29 | node_repositories(package_json = []) |
| 30 | |
| 31 | github_archive( |
| 32 | name = "io_bazel_rules_sass", |
| 33 | repo = "bazelbuild/rules_sass", |
| 34 | commit = "38989d69ef3ba5847640f007fee5cc489be6ede9" |
| 35 | ) |
| 36 | load("@io_bazel_rules_sass//sass:sass_repositories.bzl", "sass_repositories") |
David Stanke | 3208b17 | 2018-01-31 12:45:04 -0500 | [diff] [blame] | 37 | sass_repositories() |
| 38 | |
hsyed | d7ebd99 | 2018-07-04 17:25:30 +0100 | [diff] [blame] | 39 | github_archive( |
| 40 | name = "bazel_skylib", |
| 41 | repo = "bazelbuild/bazel-skylib", |
| 42 | commit = "6301f974f02350fe973d8631cf1bb87ab8d2a2bd" |
| 43 | ) |
| 44 | |
| 45 | github_archive( |
David Stanke | 3208b17 | 2018-01-31 12:45:04 -0500 | [diff] [blame] | 46 | name = "io_bazel_skydoc", |
hsyed | d7ebd99 | 2018-07-04 17:25:30 +0100 | [diff] [blame] | 47 | repo = "bazelbuild/skydoc", |
| 48 | commit="f531844d137c7accc44d841c08a2a2a366688571" |
David Stanke | 3208b17 | 2018-01-31 12:45:04 -0500 | [diff] [blame] | 49 | ) |
| 50 | load("@io_bazel_skydoc//skylark:skylark.bzl", "skydoc_repositories") |
| 51 | skydoc_repositories() |
| 52 | |
hsyed | 4a41020 | 2018-05-07 13:31:26 +0100 | [diff] [blame] | 53 | http_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 | |
hsyed | 36cf44f | 2018-02-15 23:55:14 +0000 | [diff] [blame] | 59 | load("//kotlin:kotlin.bzl", "kotlin_repositories", "kt_register_toolchains") |
David Stanke | 3208b17 | 2018-01-31 12:45:04 -0500 | [diff] [blame] | 60 | kotlin_repositories() |
hsyed | 36cf44f | 2018-02-15 23:55:14 +0000 | [diff] [blame] | 61 | kt_register_toolchains() |