io.github.edmondantes.simple.kmm.gradle.plugin
Owner: ILIA LOGINOV
Gradle plugin for configure kotlin multiplatform project for Simple Kotlin Project
https://github.com/Simple-Kotlin-Project/simple-kmm-gradle-plugin
Sources: https://github.com/Simple-Kotlin-Project/simple-kmm-gradle-plugin
Version 0.7.0 (latest)
0.7.0
Created 09 December 2023.
Gradle plugin for configure kotlin multiplatform project for Simple Kotlin Project
Using the plugins DSL:
plugins {
id("io.github.edmondantes.simple.kmm.gradle.plugin") version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.edmondantes:simple-kotlin-multiplatform-gradle-plugin:0.7.0")
}
}
apply(plugin = "io.github.edmondantes.simple.kmm.gradle.plugin")
Using the plugins DSL:
plugins {
id "io.github.edmondantes.simple.kmm.gradle.plugin" version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.edmondantes:simple-kotlin-multiplatform-gradle-plugin:0.7.0"
}
}
apply plugin: "io.github.edmondantes.simple.kmm.gradle.plugin"