rules_kotlin icon indicating copy to clipboard operation
rules_kotlin copied to clipboard

Bazel rules for Kotlin

Results 243 rules_kotlin issues
Sort by recently updated
recently updated
newest added

Sample project found at https://github.com/pswaminathan/bazel-kt-databinding-crash If you build this project as-is, you'll get a Bazel crash: ``` $ bazel build //... Starting local Bazel server and connecting to it... Analyzing:...

status: open - needs triage
P3

Suspected cause: https://github.com/jacoco/jacoco/issues/654#issuecomment-976535154 Possible alternative to JaCoCo: https://github.com/Kotlin/kotlinx-kover

P1

On the master branch commit 89a082c69ce3bc7b0a996aea12cb2d118ab0bbc7 of rules_kotlin. It either complains of accessing private member `$jacocoInit` from outside of the class, at runtime; or failed with the message of invalid...

component: jvm
status: open - investigating
P2

On code that works fine on Ubuntu and Centos, I'm having problems on Alpine. I'm using `load("@io_bazel_rules_kotlin//kotlin:jvm.bzl", "kt_jvm_library")` ``` exception: java.lang.NoClassDefFoundError: Could not initialize class com.intellij.pom.java.LanguageLevel ```

note: help wanted
P3

This is an initial stab at #270 and removes the python dependency in favor of a heavier reliance the shell. While not ideal right now, a resolution of bazelbuild/bazel#5511 would...

status: open - needs triage

status: open - needs triage
P2

The bug in kotlinc which caused ABI jars to be produced incorrect jars, without accounting for cross-inlining. 1.6 fixes this, so we should be able to use ABI jars reliably...

type: enhancement
component: android
component: jvm
status: open - investigating
P1

This is due to bazel being unable to determine that changes in the local_repository directory affect the archive_repository.

Hi, all. I used AutoFactory in the kotlin file. and it triggered `NonExistentClass` error. This is supposed to be suppressed by setting correctErrorTypes to true. But in [kt_jvm_library](https://github.com/bazelbuild/rules_kotlin/blob/0be47a2425c8871c1920dfee46758a9319fc4465/src/main/kotlin/io/bazel/kotlin/builder/tasks/jvm/compilation_task.kt#L152), it seems...

running blaze build //repro/src/main/java/com/repro/lib:lib will produce the following exception: java.lang.NoSuchMethodError: 'org.jetbrains.kotlin.com.intellij.psi.PsiElement[] org.jetbrains.kotlin.psi.KtClassOrObject.getChildren()' NOTE: anvil version is updated in WORKSPACE file. previous versions dont have this issue since they are selfcontained....