搜索 Gradle 插件

com.markelliot.versions

所有者: Mark Elliot

创建一个任务,用于确定项目中可用的依赖项和插件升级,并生成 YAML 报告。此外,还提供了两个用于更新版本.props 文件中版本(兼容 nebula.dependency-recommender 或 com.palantir.consistent-versions)的任务,以及更新 Gradle 插件块中插件版本的任务。

https://github.com/markelliot/gradle-versions

来源: https://github.com/markelliot/gradle-versions

版本 0.43.0(最新版本)

0.43.0

创建于 2023 年 2 月 18 日。

创建一个任务,用于确定项目中可用的依赖项和插件升级,并生成 YAML 报告。此外,还提供了两个用于更新版本.props 文件中版本(兼容 nebula.dependency-recommender 或 com.palantir.consistent-versions)的任务,以及更新 Gradle 插件块中插件版本的任务。

使用 plugins DSL

plugins {
  id("com.markelliot.versions") version "0.43.0"
}

使用 传统插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.markelliot.gradle.versions:gradle-versions:0.43.0")
  }
}

apply(plugin = "com.markelliot.versions")

使用 plugins DSL

plugins {
  id "com.markelliot.versions" version "0.43.0"
}

使用 传统插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.markelliot.gradle.versions:gradle-versions:0.43.0"
  }
}

apply plugin: "com.markelliot.versions"

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