io.github.gciatto.kt-mpp.multi-project-helper
Owner: Giovanni Ciatto
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 4.1.4 (latest)
4.1.4
Created 31 May 2024.
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 "4.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.gciatto:kt-mpp:4.1.4")
}
}
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 "4.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.gciatto:kt-mpp:4.1.4"
}
}
apply plugin: "io.github.gciatto.kt-mpp.multi-project-helper"