commit | b6bf40599a67e8738e86299deb1b4d3cbcf6ddca | [log] [tgz] |
---|---|---|
author | Hassan Syed <h.a.syed@gmail.com> | Sun May 13 00:15:24 2018 +0100 |
committer | GitHub <noreply@github.com> | Sun May 13 00:15:24 2018 +0100 |
tree | 53c1340addc66399daba4532d80ef8a0c6abd0c7 | |
parent | 2ab126808329700c6c23df5d571762e77fbd9efc [diff] | |
parent | cb7681e4b6e181542ea006c104fc2f0c0e625bc4 [diff] |
Merge pull request #67 from bazelbuild/open_proto_defs_visibility only export the model proto
kotlin_
to kt_jvm_
.These rules were initially forked from pubref/rules_kotlin. Key changes:
kotlin_binary
, kotlin_library
and kotlin_test
.java_dep
and dep
.data
resource_jars
runtime_deps
resources
resources_strip_prefix
exports
In the project's WORKSPACE
, declare the external repository and initialize the toolchains, like this:
kotlin_release_version="1.2.30" rules_kotlin_version = "67f4a6050584730ebae7f8a40435a209f8e0b48e" http_archive( name = "io_bazel_rules_kotlin", urls = ["https://github.com/bazelbuild/rules_kotlin/archive/%s.zip" % rules_kotlin_version], type = "zip", strip_prefix = "rules_kotlin-%s" % rules_kotlin_version ) load("@io_bazel_rules_kotlin//kotlin:kotlin.bzl", "kotlin_repositories", "kt_register_toolchains") kotlin_repositories(kotlin_release_version=kotlin_release_version) kt_register_toolchains()
If you omit kotlin_release_version
and just call kotlin_repositories()
with no arguments, you'll get the current kotlin compiler version (at least as known to the rules_kotlin project).
In your project's BUILD
files, load the kotlin rules and use them like so:
load("@io_bazel_rules_kotlin//kotlin:kotlin.bzl", "kt_jvm_library") kt_jvm_library( name = "package_name", srcs = glob(["*.kt"]), deps = [ "//path/to/dependency", ], )
This project is licensed under the Apache 2.0 license, as are all contributions
See the CONTRIBUTING doc for information about how to contribute to this project.