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.60.2
Created 29 August 2023.
                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.60.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("de.fayard.buildSrcLibs:de.fayard.buildSrcLibs.gradle.plugin:0.60.2") }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.60.2") } } apply(plugin = "de.fayard.buildSrcLibs")
- Applying plugins to all subprojects .