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.2.17"
}

See also:

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