Search Gradle plugins

net.kodein.cup

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-02 (latest)

Created 09 May 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-02"
}

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-02")
  }
}

apply(plugin = "net.kodein.cup")

Using the plugins DSL:

plugins {
  id "net.kodein.cup" version "1.0.0-Beta-02"
}

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-02"
  }
}

apply plugin: "net.kodein.cup"

Learn how to apply plugins to subprojects