net.kodein.cup
Owner: Kodein Koders
Configures a Kotlin/Multiplatform project for a Compose-Ur-Pres presentation.
https://kodeinkoders.github.io/CuP
Sources: https://github.com/KodeinKoders/CuP
Version 1.0.0-Beta-10 (latest)
1.0.0-Beta-10
Created 01 October 2024.
Configures a Kotlin/Multiplatform project for a Compose-ur-Pres presentation.
Using the plugins DSL:
plugins {
id("net.kodein.cup") version "1.0.0-Beta-10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.kodein.cup:cup-gradle-plugin:1.0.0-Beta-10")
}
}
apply(plugin = "net.kodein.cup")
Using the plugins DSL:
plugins {
id "net.kodein.cup" version "1.0.0-Beta-10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.kodein.cup:cup-gradle-plugin:1.0.0-Beta-10"
}
}
apply plugin: "net.kodein.cup"