Search Gradle plugins

Version 0.8.1

0.8.1

Created 30 July 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.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.jetbrains.kotlin:kotlin-native-gradle-plugin:0.8.1")
      }
    }
    
    apply(plugin = "org.jetbrains.kotlin.native")
  • Applying plugins to all subprojects .