搜索 Gradle 插件

版本 0.60.5(最新版)

0.60.5

创建于 2024年2月5日。

无痛苦的依赖管理

使用 plugins DSL

plugins {
  id("de.fayard.refreshVersions-core") version "0.60.5"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("de.fayard.refreshVersions:refreshVersions-core:0.60.5")
  }
}

apply(plugin = "de.fayard.refreshVersions-core")

使用 plugins DSL

plugins {
  id "de.fayard.refreshVersions-core" version "0.60.5"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "de.fayard.refreshVersions:refreshVersions-core:0.60.5"
  }
}

apply plugin: "de.fayard.refreshVersions-core"

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