搜索Gradle插件

版本 1.1.8 (最新)

1.1.8

创建于2021年8月23日。

这是Java服务加载插件使用示例:serviceLoader { serviceInterface 'ideal.sylph.spi.Runner' serviceInterface 'ideal.sylph.api.PipelinePlugin' }

使用 plugins DSL

plugins {
  id("com.github.harbby.gradle.serviceloader") version "1.1.8"
}

使用 旧插件应用方式

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.harbby:gradle-serviceloader:1.1.8")
  }
}

apply(plugin = "com.github.harbby.gradle.serviceloader")

使用 plugins DSL

plugins {
  id "com.github.harbby.gradle.serviceloader" version "1.1.8"
}

使用 旧插件应用方式

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.harbby:gradle-serviceloader:1.1.8"
  }
}

apply plugin: "com.github.harbby.gradle.serviceloader"

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