搜索Gradle插件

版本 1.0-SNAPSHOT (最新版)

1.0-SNAPSHOT

创建于 2021年1月4日。

将文件从URL下载到目标文件

使用 plugins DSL

plugins {
  id("ru.clevertec.file-downloader") version "1.0-SNAPSHOT"
}

使用 旧的插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.ru.clevertec:buildSrc:1.0-SNAPSHOT")
  }
}

apply(plugin = "ru.clevertec.file-downloader")

使用 plugins DSL

plugins {
  id "ru.clevertec.file-downloader" version "1.0-SNAPSHOT"
}

使用 旧的插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.ru.clevertec:buildSrc:1.0-SNAPSHOT"
  }
}

apply plugin: "ru.clevertec.file-downloader"

了解如何将插件应用到子项目中