搜索 Gradle 插件

net.sjrx.tangospi

所有者: Steve Ramage

允许自动生成用于使用 Java 服务提供者接口功能所需的提供者配置文件的插件

https://github.com/SJrX/tangoSPI/

来源: https://github.com/SJrX/tangoSPI/

版本 0.1(最新版)

0.1

创建于 2017年8月4日。

允许自动生成用于使用 Java 服务提供者接口功能所需的提供者配置文件的插件

使用 插件 DSL

plugins {
  id("net.sjrx.tangospi") version "0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.net.sjrx.gradle.plugins:tango-spi:0.1")
  }
}

apply(plugin = "net.sjrx.tangospi")

使用 插件 DSL

plugins {
  id "net.sjrx.tangospi" version "0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.net.sjrx.gradle.plugins:tango-spi:0.1"
  }
}

apply plugin: "net.sjrx.tangospi"

了解如何将插件应用于子项目