Search Gradle plugins

Opt-in Kotlin JVM support for com.stano.java subprojects. Applies the Kotlin JVM Gradle plugin and configures KotlinCompile tasks (incremental compilation, same lint/warning suppression free-compiler-args as the Java compiler). Requires com.stano.java to be applied to the subproject.

https://github.com/jstano/gradle-plugins

Sources: https://github.com/jstano/gradle-plugins

Version 0.1.7 (latest)

Created 26 July 2026.

Opt-in Kotlin JVM support for com.stano.java subprojects. Applies the Kotlin JVM Gradle plugin and configures KotlinCompile tasks (incremental compilation, same lint/warning suppression free-compiler-args as the Java compiler). Requires com.stano.java to be applied to the subproject.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.stano.kotlin") version "0.1.7"
}

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