net.orekyuu.library-version-updater.LibraryVersionUpdaterPlugin
Owner: orekyuu
Update library and create GitHub pull request.
https://github.com/orekyuu/LibraryVersionUpdater
Sources: https://github.com/orekyuu/LibraryVersionUpdater
Version 0.0.2 (latest)
Created 27 January 2019.
Update library and create GitHub pull request.
Add this plugin to your build using the plugins DSL:
plugins {
id("net.orekyuu.library-version-updater.LibraryVersionUpdaterPlugin") version "0.0.2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("net.orekyuu.library-version-updater.LibraryVersionUpdaterPlugin:net.orekyuu.library-version-updater.LibraryVersionUpdaterPlugin.gradle.plugin:0.0.2") }
It can then be applied in the precompiled script plugin:plugins { id("net.orekyuu.library-version-updater.LibraryVersionUpdaterPlugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.orekyuu.library-version-updater.LibraryVersionUpdaterPlugin:net.orekyuu.library-version-updater.LibraryVersionUpdaterPlugin.gradle.plugin:0.0.2") } } apply(plugin = "net.orekyuu.library-version-updater.LibraryVersionUpdaterPlugin")
- Applying plugins to all subprojects .