me.clutchy.dependenciesgen
Owner:
Cameron Weaver (Clutch)
Gradle plugin that takes all the dependencies of a project and puts them into a single file.
Sources: https://github.com/xIGBClutchIx/DependenciesGen
Version 1.0.8 (latest)
Created 31 May 2022.
Gradle plugin that takes all the dependencies of a project and puts them into a single file.
Add this plugin to your build using the plugins DSL:
plugins {
id("me.clutchy.dependenciesgen") version "1.0.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("me.clutchy.dependenciesgen:me.clutchy.dependenciesgen.gradle.plugin:1.0.8") }
It can then be applied in the precompiled script plugin:plugins { id("me.clutchy.dependenciesgen") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("me.clutchy.dependenciesgen:me.clutchy.dependenciesgen.gradle.plugin:1.0.8") } } apply(plugin = "me.clutchy.dependenciesgen")
- Applying plugins to all subprojects .