搜索Gradle插件

版本 0.2.20 (最新)

0.2.20

创建于 2020年11月12日。

此插件版本将在JCenter永久重定向到Maven Central后不再解析,因为它仅使用JCenter中存在的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact a Android release plugin

使用 plugins DSL

plugins {
  id("xyz.liut.release") version "0.2.20"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.xyz.liut.gradleplugin:buildSrc:0.2.20")
  }
}

apply(plugin = "xyz.liut.release")

使用 plugins DSL

plugins {
  id "xyz.liut.release" version "0.2.20"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.xyz.liut.gradleplugin:buildSrc:0.2.20"
  }
}

apply plugin: "xyz.liut.release"

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