Search Gradle plugins

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.1

Created 29 August 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.1"
}

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.1")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects