搜索 Gradle 插件

版本 0.2.0 (最新版)

0.2.0

创建于 2022 年 9 月 30 日。

Capsule 的 Gradle 插件。

使用 插件 DSL

plugins {
  id("com.github.ngyewch.capsule") version "0.2.0"
}

使用 旧的插件应用方法

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.ngyewch.gradle:gradle-capsule-plugin:0.2.0")
  }
}

apply(plugin = "com.github.ngyewch.capsule")

使用 插件 DSL

plugins {
  id "com.github.ngyewch.capsule" version "0.2.0"
}

使用 旧的插件应用方法

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.ngyewch.gradle:gradle-capsule-plugin:0.2.0"
  }
}

apply plugin: "com.github.ngyewch.capsule"

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