Search Gradle plugins

Version 1.0 (latest)

Created 21 June 2017.

Provides a simple ServiceRegistry with dependency management

Using the plugins DSL:

plugins {
  id("xyz.yannik_sc.java.service_driver") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.Y_Sc:ServiceDriver:1.0")
  }
}

apply(plugin = "xyz.yannik_sc.java.service_driver")

Using the plugins DSL:

plugins {
  id "xyz.yannik_sc.java.service_driver" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.Y_Sc:ServiceDriver:1.0"
  }
}

apply plugin: "xyz.yannik_sc.java.service_driver"

Learn how to apply plugins to subprojects