org.jetbrains.kotlin.platform.native
Owner: Kotlin Team
Kotlin/Native plugin for multiplatform development
Sources: https://github.com/JetBrains/kotlin-native/tree/master/tools/kotlin-native-gradle-plugin
Version 1.3.0-rc-208
Created 23 October 2018.
An experimental Kotlin/Native plugin integrated with Gradle support for native languages and
providing a new DSL which is much closer to the DSL of Kotlin/JVM and Kotlin/JS plugins.
The plugin is intended for native parts of multiplatform projects.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.jetbrains.kotlin.platform.native") version "1.3.0-rc-208"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.jetbrains.kotlin.platform.native:org.jetbrains.kotlin.platform.native.gradle.plugin:1.3.0-rc-208") }
It can then be applied in the precompiled script plugin:plugins { id("org.jetbrains.kotlin.platform.native") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.jetbrains.kotlin.platform.native:org.jetbrains.kotlin.platform.native.gradle.plugin:1.3.0-rc-208") } } apply(plugin = "org.jetbrains.kotlin.platform.native")
- Applying plugins to all subprojects .