搜索 Gradle 插件

版本 0.9.2(最新版)

0.9.2

创建于 2020 年 1 月 15 日。

当 JCenter 成为永久转向 Maven Central 时,此插件版本将无法解析,因为它只使用 JCenter 中可找到的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact 可扩展数据定义语言

使用 插件 DSL

plugins {
  id("net.kebernet.xddl") version "0.9.2"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.kebernet.xddl:gradle-plugin:0.9.2")
  }
}

apply(plugin = "net.kebernet.xddl")

使用 插件 DSL

plugins {
  id "net.kebernet.xddl" version "0.9.2"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.kebernet.xddl:gradle-plugin:0.9.2"
  }
}

apply plugin: "net.kebernet.xddl"

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