com.github.harbby.gradle.serviceloader
Owner: ideal
this is java serviceloader plugin
https://github.com/harbby/gradle-serviceloader
Version 1.1.8 (latest)
1.1.8
Created 23 August 2021.
this is java serviceloader plugin
Usage:
serviceLoader {
serviceInterface 'ideal.sylph.spi.Runner'
serviceInterface 'ideal.sylph.api.PipelinePlugin'
}
Using the plugins DSL:
plugins {
id("com.github.harbby.gradle.serviceloader") version "1.1.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.harbby:gradle-serviceloader:1.1.8")
}
}
apply(plugin = "com.github.harbby.gradle.serviceloader")
Using the plugins DSL:
plugins {
id "com.github.harbby.gradle.serviceloader" version "1.1.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.harbby:gradle-serviceloader:1.1.8"
}
}
apply plugin: "com.github.harbby.gradle.serviceloader"