搜索 Gradle 插件

name.remal.copy-dependencies

所有者: 谢明·列文

此插件提供配置依赖项,这些依赖项将直接复制到构建输出。

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

源代码: https://gitlab.com/remal/gradle-plugins

使用 插件 DSL

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

使用 旧插件应用程序

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

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

使用 插件 DSL

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

使用 旧插件应用程序

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

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

学习如何将插件应用于子项目