搜索Gradle插件

pl.mareklangiewicz.sourcefun

所有者: Marek Langiewicz

为典型的java/kotlin/android项目更新依赖项(带有IDE支持)。

https://github.com/mareklangiewicz/SourceFun

来源: https://github.com/langara/deps.kt

使用插件DSL

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

使用旧插件应用程序

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

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

使用插件DSL

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

使用旧插件应用程序

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

apply plugin: "pl.mareklangiewicz.sourcefun"

了解如何将插件应用于子项目