com.github.fkorotkov.libraries
Owner: Fedor Korotkov
Specify versions of external libraries in a centralized place and use them across the sub-projects
https://github.com/fkorotkov/gradle-libraries-plugin
Sources: https://github.com/fkorotkov/gradle-libraries-plugin.git
Version 1.1 (latest)
Created 08 May 2020.
Specify versions of external libraries in a centralized place and use them across the sub-projects
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.fkorotkov.libraries") version "1.1"
}
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("com.github.fkorotkov.libraries:com.github.fkorotkov.libraries.gradle.plugin:1.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.github.fkorotkov.libraries") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.fkorotkov.libraries:com.github.fkorotkov.libraries.gradle.plugin:1.1") } } apply(plugin = "com.github.fkorotkov.libraries")
- Applying plugins to all subprojects .