Search Gradle plugins

com.ofg.uptodate

Gradle plugin that tells you what libs have new versions on Maven Central and JCenter

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

Version 1.6.3 (latest)

Created 10 February 2017.

No version description available.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.ofg.uptodate"

Learn how to apply plugins to subprojects