de.fayard.buildSrcLibs
Owner: Jean-Michel Fayard
Common Gradle dependencies - See gradle refreshVersions
https://splitties.github.io/refreshVersions/
Sources: https://github.com/jmfayard/refreshVersions
Version 0.22.0
Created 27 September 2021.
Generates dependency notations constants in buildSrc and updates the versions with gradle refreshVersions
Add this plugin to your build using the plugins DSL:
plugins {
id("de.fayard.buildSrcLibs") version "0.22.0"
}
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("de.fayard.buildSrcLibs:de.fayard.buildSrcLibs.gradle.plugin:0.22.0") }
It can then be applied in the precompiled script plugin:plugins { id("de.fayard.buildSrcLibs") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.fayard.buildSrcLibs:de.fayard.buildSrcLibs.gradle.plugin:0.22.0") } } apply(plugin = "de.fayard.buildSrcLibs")
- Applying plugins to all subprojects .