搜索Gradle插件

版本 1.0.3 (最新)

1.0.3

创建于 2021年9月3日。

一个通过注释和从网站作为活文档测试代码的SBE插件

使用 plugins DSL

plugins {
  id("com.github.eMe-404.fusheng-plugin") version "1.0.3"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.eMe-404.fusheng-plugin:plugin:1.0.3")
  }
}

apply(plugin = "com.github.eMe-404.fusheng-plugin")

使用 plugins DSL

plugins {
  id "com.github.eMe-404.fusheng-plugin" version "1.0.3"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.eMe-404.fusheng-plugin:plugin:1.0.3"
  }
}

apply plugin: "com.github.eMe-404.fusheng-plugin"

了解如何应用插件到子项目