# Copyright 2022 Google LLC. 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 = "rules_kotlin") load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_jvm_external", strip_prefix = "rules_jvm_external-4.2", sha256 = "cd1a77b7b02e8e008439ca76fd34f5b07aecb8c752961f9640dea15e9e5ba1ca", url = "https://github.com/bazelbuild/rules_jvm_external/archive/4.2.zip", ) load("@rules_jvm_external//:repositories.bzl", "rules_jvm_external_deps") rules_jvm_external_deps() load("@rules_jvm_external//:setup.bzl", "rules_jvm_external_setup") rules_jvm_external_setup() load("@rules_jvm_external//:defs.bzl", "maven_install") http_archive( name = "bazel_skylib", sha256 = "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728", urls = [ "https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz", ], ) load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace") bazel_skylib_workspace() http_archive( name = "bazel_platforms", sha256 = "379113459b0feaf6bfbb584a91874c065078aa673222846ac765f86661c27407", urls = [ "https://github.com/bazelbuild/platforms/releases/download/0.0.5/platforms-0.0.5.tar.gz", ], ) http_archive( name = "rules_java", urls = [ "https://mirror.bazel.build/github.com/bazelbuild/rules_java/releases/download/5.0.0/rules_java-5.0.0.tar.gz", "https://github.com/bazelbuild/rules_java/releases/download/5.0.0/rules_java-5.0.0.tar.gz", ], sha256 = "8c376f1e4ab7d7d8b1880e4ef8fc170862be91b7c683af97ca2768df546bb073", ) load("@rules_java//java:repositories.bzl", "java_tools_repos") java_tools_repos() http_archive( name = "dagger", strip_prefix = "dagger-dagger-2.28.1", build_file = "@//bazel:dagger.BUILD", sha256 = "9e69ab2f9a47e0f74e71fe49098bea908c528aa02fa0c5995334447b310d0cdd", urls = ["https://github.com/google/dagger/archive/dagger-2.28.1.zip"], ) load("@dagger//:workspace_defs.bzl", "DAGGER_ARTIFACTS", "DAGGER_REPOSITORIES") load("@//toolchains/kotlin_jvm:kt_jvm_toolchains.bzl", "KT_VERSION") http_archive( name = "kotlinc", build_file = "@//bazel:kotlinc.BUILD", sha256 = "7683f5451ef308eb773a686ee7779a76a95ed8b143c69ac247937619d7ca3a09", strip_prefix = "kotlinc", urls = [ "https://github.com/JetBrains/kotlin/releases/download/v{0}/kotlin-compiler-{0}.zip".format(KT_VERSION[1:].replace("_", ".")), ], ) register_toolchains("@//toolchains/kotlin_jvm:all") maven_install( artifacts = DAGGER_ARTIFACTS + [ "com.google.auto.service:auto-service-annotations:1.0.1", "com.google.auto.service:auto-service:1.0.1", "com.google.auto.value:auto-value:1.9", "com.google.testing.compile:compile-testing:0.19", "com.google.truth:truth:1.1.3", "javax.inject:jsr330-api:0.9", "junit:junit:4.13.2", "org.jacoco:org.jacoco.agent:0.8.8", "org.jacoco:org.jacoco.cli:0.8.8", "org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.4.2", "org.mockito:mockito-core:4.5.1", ], repositories = DAGGER_REPOSITORIES + [ "https://repository.mulesoft.org/nexus/content/repositories/public", ], override_targets = { "org.jetbrains.kotlin:annotations": "@kotlinc//:annotations", "org.jetbrains.kotlin:kotlin-reflect": "@kotlinc//:kotlin_reflect", "org.jetbrains.kotlin:kotlin-stdlib": "@kotlinc//:kotlin_stdlib", "org.jetbrains.kotlin:kotlin-stdlib-jdk7": "@kotlinc//:kotlin_stdlib_jdk7", "org.jetbrains.kotlin:kotlin-stdlib-jdk8": "@kotlinc//:kotlin_stdlib_jdk8", "org.jetbrains.kotlin:kotlin-test": "@kotlinc//:kotlin_test", }, )