de.fayard.dependencies
Owner: Jean-Michel Fayard
Common Gradle dependencies - See gradle refreshVersions
https://builtwithgradle.netlify.com/
Sources: https://github.com/jmfayard/buildSrcVersions
Version 0.5.8 (latest)
Created 23 March 2020.
Common Gradle dependencies - See gradle refreshVersions
Add this plugin to your build using the plugins DSL:
plugins {
id("de.fayard.dependencies") version "0.5.8"
}
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.dependencies:de.fayard.dependencies.gradle.plugin:0.5.8") }
It can then be applied in the precompiled script plugin:plugins { id("de.fayard.dependencies") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.fayard.dependencies:de.fayard.dependencies.gradle.plugin:0.5.8") } } apply(plugin = "de.fayard.dependencies")
- Applying plugins to all subprojects .