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)
Created 21 June 2017.
Provides a simple ServiceRegistry with dependency management
Add this plugin to your build using the plugins DSL:
plugins {
id("xyz.yannik_sc.java.service_driver") version "1.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("xyz.yannik_sc.java.service_driver:xyz.yannik_sc.java.service_driver.gradle.plugin:1.0") }
It can then be applied in the precompiled script plugin:plugins { id("xyz.yannik_sc.java.service_driver") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("xyz.yannik_sc.java.service_driver:xyz.yannik_sc.java.service_driver.gradle.plugin:1.0") } } apply(plugin = "xyz.yannik_sc.java.service_driver")
- Applying plugins to all subprojects .