com.github.eMe-404.fusheng-plugin
Owner: Yaer
A plugin that helps you test your code with SBE by annotation and from website as living doc
https://github.com/eMe-404/fusheng-plugin
Sources: https://github.com/vincentx/fusheng/tree/main/plugin
Version 1.0.3 (latest)
1.0.3
Created 03 September 2021.
A plugin that helps you test your code with SBE by annotation and from website as living doc
Using the plugins DSL:
plugins {
id("com.github.eMe-404.fusheng-plugin") version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.eMe-404.fusheng-plugin:plugin:1.0.3")
}
}
apply(plugin = "com.github.eMe-404.fusheng-plugin")
Using the plugins DSL:
plugins {
id "com.github.eMe-404.fusheng-plugin" version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.eMe-404.fusheng-plugin:plugin:1.0.3"
}
}
apply plugin: "com.github.eMe-404.fusheng-plugin"