com.github.eMe-404.fusheng-plugin
所有者: Yaer
一个通过注释和从网站作为活文档测试代码的SBE插件
https://github.com/eMe-404/fusheng-plugin
来源: https://github.com/vincentx/fusheng/tree/main/plugin
使用 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"