com.releaseshub.gradle.plugin
Owner: Maxi Rosson
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.5.0
1.5.0
Created 15 May 2020.
Gradle Plugin to automatically upgrade your java gradle project dependencies and send a GitHub pull request with the changes
Using the plugins DSL:
plugins {
id("com.releaseshub.gradle.plugin") version "1.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.releaseshub:releases-hub-gradle-plugin:1.5.0")
}
}
apply(plugin = "com.releaseshub.gradle.plugin")
Using the plugins DSL:
plugins {
id "com.releaseshub.gradle.plugin" version "1.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.releaseshub:releases-hub-gradle-plugin:1.5.0"
}
}
apply plugin: "com.releaseshub.gradle.plugin"