搜索Gradle插件

com.heretere.hdl.plugin

所有者: Justin Heflin

在运行时下载依赖项而不是阴影以匹配文件大小限制

https://github.com/heretere/hdl

来源: https://github.com/heretere/hdl

版本 2.0.1 (最新版)

2.0.1

创建于 2021 年 10 月 28 日。

在运行时下载依赖项而不是阴影以匹配文件大小限制

使用 插件 DSL

plugins {
  id("com.heretere.hdl.plugin") version "2.0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.heretere.hdl:plugin:2.0.1")
  }
}

apply(plugin = "com.heretere.hdl.plugin")

使用 插件 DSL

plugins {
  id "com.heretere.hdl.plugin" version "2.0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.heretere.hdl:plugin:2.0.1"
  }
}

apply plugin: "com.heretere.hdl.plugin"

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