Search Gradle plugins

pl.mareklangiewicz.sourcefun

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

https://github.com/mareklangiewicz/DepsKt

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

Using the plugins DSL:

plugins {
  id("pl.mareklangiewicz.sourcefun") version "0.3.01"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("pl.mareklangiewicz.deps:DepsKt:0.3.01")
  }
}

apply(plugin = "pl.mareklangiewicz.sourcefun")

Using the plugins DSL:

plugins {
  id "pl.mareklangiewicz.sourcefun" version "0.3.01"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "pl.mareklangiewicz.deps:DepsKt:0.3.01"
  }
}

apply plugin: "pl.mareklangiewicz.sourcefun"

Learn how to apply plugins to subprojects