Search Gradle plugins

Version 0.8.2-rc1-3103

Created 09 August 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 projects containing only Kotlin/Native code (without common modules). For multiplatform development see https://plugins.gradle.org/plugin/org.jetbrains.kotlin.platform.native.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.jetbrains.kotlin.native") version "0.8.2-rc1-3103"
}

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.native:org.jetbrains.kotlin.native.gradle.plugin:0.8.2-rc1-3103")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.jetbrains.kotlin.native")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.jetbrains.kotlin.native:org.jetbrains.kotlin.native.gradle.plugin:0.8.2-rc1-3103")
      }
    }
    
    apply(plugin = "org.jetbrains.kotlin.native")
  • Applying plugins to all subprojects .