搜索Gradle插件

com.ofg.uptodate

Gradle插件,可告诉您Maven Central和JCenter上的哪些库有新版本

https://github.com/4finance/uptodate-gradle-plugin

版本 1.6.3 (最新版)

1.6.3

创建于 2017年2月10日。

随着JCenter永久重定向到Maven Central,此插件版本将不再解决,因为它只使用JCenter中存在的依赖项。请参阅以下博客文章以获取详细信息:https://blog.gradle.org.cn/portal-jcenter-impact

使用 插件DSL

plugins {
  id("com.ofg.uptodate") version "1.6.3"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.ofg:uptodate-gradle-plugin:1.6.3")
  }
}

apply(plugin = "com.ofg.uptodate")

使用 插件DSL

plugins {
  id "com.ofg.uptodate" version "1.6.3"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.ofg:uptodate-gradle-plugin:1.6.3"
  }
}

apply plugin: "com.ofg.uptodate"

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