Search Gradle plugins

name.remal.copy-dependencies

Plugin that provides configuration with dependencies that will be directly copied to the build output.

https://gitlab.com/remal/gradle-plugins

Sources: https://gitlab.com/remal/gradle-plugins

Using the plugins DSL:

plugins {
  id("name.remal.copy-dependencies") version "0.13.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.name.remal:gradle-plugins:0.13.1")
  }
}

apply(plugin = "name.remal.copy-dependencies")

Using the plugins DSL:

plugins {
  id "name.remal.copy-dependencies" version "0.13.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.name.remal:gradle-plugins:0.13.1"
  }
}

apply plugin: "name.remal.copy-dependencies"

Learn how to apply plugins to subprojects