搜索 Gradle 插件

版本 2.1.1 (最新)

2.1.1

创建于 2023 年 3 月 27 日。

类型安全的单元生成器

使用 插件 DSL

plugins {
  id("me.akainth.tape") version "2.1.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("me.akainth:tape:2.1.1")
  }
}

apply(plugin = "me.akainth.tape")

使用 插件 DSL

plugins {
  id "me.akainth.tape" version "2.1.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "me.akainth:tape:2.1.1"
  }
}

apply plugin: "me.akainth.tape"

学习如何将插件应用到子项目中