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.2.0

Created 25 February 2015.

No version description available.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.ofg.uptodate"

Learn how to apply plugins to subprojects