Search Gradle plugins

Version 0.5

Created 06 July 2022.

Copy all the dependency jars of a project into a destination directory

Using the plugins DSL:

plugins {
  id("io.shiftleft.gather-dependencies") version "0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.shiftleft:gather-dependencies:0.5")
  }
}

apply(plugin = "io.shiftleft.gather-dependencies")

Using the plugins DSL:

plugins {
  id "io.shiftleft.gather-dependencies" version "0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.shiftleft:gather-dependencies:0.5"
  }
}

apply plugin: "io.shiftleft.gather-dependencies"

Learn how to apply plugins to subprojects