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.4
1.0.4
Created 14 May 2021.
Gradle plugin that takes all the dependencies of a project and puts them into a single file.
Using the plugins DSL:
plugins {
id("me.clutchy.dependenciesgen") version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("me.clutchy:DependenciesGen:1.0.4")
}
}
apply(plugin = "me.clutchy.dependenciesgen")
Using the plugins DSL:
plugins {
id "me.clutchy.dependenciesgen" version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "me.clutchy:DependenciesGen:1.0.4"
}
}
apply plugin: "me.clutchy.dependenciesgen"