Search Gradle plugins

com.releaseshub.gradle.plugin

Gradle Plugin to automatically upgrade your java gradle project dependencies and send a GitHub pull request with the changes

https://plugin.releaseshub.com/

Sources: https://github.com/releaseshub/releases-hub-gradle-plugin

Version 1.6.0

1.6.0

Created 31 May 2020.

Gradle Plugin to automatically upgrade your java gradle project dependencies and send a GitHub pull request with the changes

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.releaseshub.gradle.plugin") version "1.6.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.releaseshub:releases-hub-gradle-plugin:1.6.0")
      }
    }
    
    apply(plugin = "com.releaseshub.gradle.plugin")
  • Applying plugins to all subprojects .