run.smt.dependency-properties
Owner: Kirill Saksin
Allows you to store your dependency versions in separate properties file.
https://github.com/saksmt/dependency-properties-plugin
Sources: https://github.com/saksmt/dependency-properties-plugin
Version 1.0.0 (latest)
Created 15 September 2017.
Allows you to store your dependency versions in separate properties file.
Add this plugin to your build using the plugins DSL:
plugins {
id("run.smt.dependency-properties") version "1.0.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("run.smt.dependency-properties:run.smt.dependency-properties.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("run.smt.dependency-properties") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("run.smt.dependency-properties:run.smt.dependency-properties.gradle.plugin:1.0.0") } } apply(plugin = "run.smt.dependency-properties")
- Applying plugins to all subprojects .