rules_kotlin icon indicating copy to clipboard operation
rules_kotlin copied to clipboard

Bazel rules for Kotlin

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

Is there any support for something similar to the `java_plugin` rule? I would like to use kotlin with dagger2 and require that the kotlin rules plug in to the `kapt`...

enhancement
help wanted

Issue: When using the `kotlin_binary` rule to create an uberjar, one expects that direct and transitive dependencies are included. It appears that direct kotlin classes are included, but _transitive kotlin...

If one specifies a non-absolute kotlin dependency that ends in the package name, eg 'foo' the code would suffix the _package name_ with "_kt", resulting in an error. The correct...

An example is at https://github.com/fishy/onepwd/tree/c56928e42bc521df2be9f975958019718dae53f5. In https://github.com/fishy/onepwd/blob/c56928e42bc521df2be9f975958019718dae53f5/BUILD#L40-L50, only `com_android_support_appcompat_v7_27_0_1` and `com_android_support_preference_v7_27_0_1` are actually directly depended, and everything else in `aar_deps` are just transitive dependencies from those 2 libraries (you can...

Doc: https://kotlinlang.org/docs/reference/multiplatform.html I think there is something great we can achieve here to marry the multiplatform feature from [email protected] with Bazel to support **_Write once, Compile everywhere_** ambition. For example,...