Search Gradle plugins

com.zoltu.kotlin

An unofficial release of the official Kotlin Gradle Plugin. The only reason this exists is because JetBrains doesn't yet publish the kotlin plugin to plugins.gradle.org. Once https://youtrack.jetbrains.com/issue/KT-5756 is resolved, this plugin will no longer be necessary.

https://github.com/Zoltu/kotlin-gradle-plugin

Sources: https://github.com/Zoltu/kotlin-gradle-plugin

Version 1.1.1 (latest)

Created 14 March 2017.

Deprecated, please use the official Jetbrains Kotlin plugin from https://plugins.gradle.org/plugin/org.jetbrains.kotlin.jvm.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.zoltu.kotlin") version "1.1.1"
}

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