Search Gradle plugins

Version 1.1.5

Created 30 August 2018.

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.5"
}

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects