From 8e5c63d035ef44a269b8c43430f43f5c8eebfb63 Mon Sep 17 00:00:00 2001 From: Ignat Beresnev Date: Fri, 10 Nov 2023 11:46:54 +0100 Subject: Restructure the project to utilize included builds (#3174) * Refactor and simplify artifact publishing * Update Gradle to 8.4 * Refactor and simplify convention plugins and build scripts Fixes #3132 --------- Co-authored-by: Adam <897017+aSemy@users.noreply.github.com> Co-authored-by: Oleg Yukhnevich --- plugins/kotlin-as-java/README.md | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 plugins/kotlin-as-java/README.md (limited to 'plugins/kotlin-as-java/README.md') diff --git a/plugins/kotlin-as-java/README.md b/plugins/kotlin-as-java/README.md deleted file mode 100644 index e33bd1bb..00000000 --- a/plugins/kotlin-as-java/README.md +++ /dev/null @@ -1,15 +0,0 @@ -# Kotlin as Java plugin - -With Kotlin as Java plugin applied, all Kotlin signatures will be rendered as Java signatures. - -For instance, `fun foo(bar: Bar): Baz` will be rendered as `public final Baz foo(Bar bar)`. - -The Kotlin as Java plugin is published to maven central as a -[separate artifact](https://mvnrepository.com/artifact/org.jetbrains.dokka/kotlin-as-java-plugin): - -```text -org.jetbrains.dokka:kotlin-as-java-plugin:1.9.10 -``` - -**This plugin is at its early stages**, so you may experience issues and encounter bugs. Feel free to -[report](https://github.com/Kotlin/dokka/issues/new/choose) any errors you see. -- cgit