搜索Gradle插件

版本 1.0-SNAPSHOT (最新版)

1.0-SNAPSHOT

创建于 2021年1月10日。

从指定路径下载pdf模板

使用插件DSL

plugins {
  id("com.github.alexmazharouski") version "1.0-SNAPSHOT"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.alexmazharouski:downloader:1.0-SNAPSHOT")
  }
}

apply(plugin = "com.github.alexmazharouski")

使用插件DSL

plugins {
  id "com.github.alexmazharouski" version "1.0-SNAPSHOT"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.alexmazharouski:downloader:1.0-SNAPSHOT"
  }
}

apply plugin: "com.github.alexmazharouski"

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