Search Gradle plugins

Version 0.7 (latest)

Created 19 May 2023.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects