xyz.yannik_sc.java.service_driver
Owner: Yannik Sc
Provides a simple ServiceRegistry with dependency management
Sources: https://gitlab.com/Yannik_Sc/JServiceDriver.git
Version 1.0 (latest)
1.0
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"