Search Gradle plugins

Version 0.3.1 (latest)

0.3.1

Created 08 January 2022.

Ease the configuration of Kotlin Multiplateform Plugin.

Add this plugin to your build using the plugins DSL:

plugins {
  id("city.smartb.fixers.gradle.kotlin.mpp") version "0.3.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("city.smartb.fixers.gradle:plugin:0.3.1")
      }
    }
    
    apply(plugin = "city.smartb.fixers.gradle.kotlin.mpp")
  • Applying plugins to all subprojects .