Search Gradle plugins

io.github.sergeshustoff.dikt

Simple DI for kotlin multiplatform with depdendency graph validation in compile-time.

https://github.com/sergeshustoff/dikt

Sources: https://github.com/sergeshustoff/dikt

Using the plugins DSL:

plugins {
  id("io.github.sergeshustoff.dikt") version "1.0.0-alpha9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.sergeshustoff.dikt:dikt-gradle-plugin:1.0.0-alpha9")
  }
}

apply(plugin = "io.github.sergeshustoff.dikt")

Using the plugins DSL:

plugins {
  id "io.github.sergeshustoff.dikt" version "1.0.0-alpha9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.sergeshustoff.dikt:dikt-gradle-plugin:1.0.0-alpha9"
  }
}

apply plugin: "io.github.sergeshustoff.dikt"

Learn how to apply plugins to subprojects