Search Gradle plugins

io.github.gciatto.kt-mpp.multi-project-helper

Kotlin multi-platform and multi-project configurations plugin for Gradle: multi-platform & multi-project helper plugin

https://github.com/gciatto/kt-mpp

Sources: https://github.com/gciatto/kt-mpp.git

Version 1.1.1

Created 21 March 2023.

Kotlin multi-platform and multi-project configurations plugin for Gradle: multi-platform & multi-project helper plugin

Using the plugins DSL:

plugins {
  id("io.github.gciatto.kt-mpp.multi-project-helper") version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.gciatto:kt-mpp:1.1.1")
  }
}

apply(plugin = "io.github.gciatto.kt-mpp.multi-project-helper")

Using the plugins DSL:

plugins {
  id "io.github.gciatto.kt-mpp.multi-project-helper" version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.gciatto:kt-mpp:1.1.1"
  }
}

apply plugin: "io.github.gciatto.kt-mpp.multi-project-helper"

Learn how to apply plugins to subprojects