搜索 Gradle 插件

版本 0.4.0 (最新版)

0.4.0

创建于 2021 年 11 月 11 日。

Honker Gradle 插件帮助组装法律片段

使用 插件 DSL

plugins {
  id("org.nosphere.honker") version "0.4.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.nosphere.honker:honker-gradle:0.4.0")
  }
}

apply(plugin = "org.nosphere.honker")

使用 插件 DSL

plugins {
  id "org.nosphere.honker" version "0.4.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.nosphere.honker:honker-gradle:0.4.0"
  }
}

apply plugin: "org.nosphere.honker"

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