Search Gradle plugins

pl.mareklangiewicz.deps

Updated dependencies for typical java/kotlin/android projects (with IDE support).

https://github.com/mareklangiewicz/DepsKt

Sources: https://github.com/langara/deps.kt

Add this plugin to your build using the plugins DSL:

plugins {
  id("pl.mareklangiewicz.deps") version "0.3.35"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("pl.mareklangiewicz.deps:DepsKt:0.3.35")
      }
    }
    
    apply(plugin = "pl.mareklangiewicz.deps")
  • Applying plugins to all subprojects .