ud.susel.susel-gradle-plugin
Owner: Uday
This gradle plugin creates the META-INF/susel.metadata file representing the metadata about the service providers in a given Java module (in the JPMS sense).
https://github.com/udaychandra/susel-gradle-plugin
Sources: https://github.com/udaychandra/susel-gradle-plugin
Version 0.1.0 (latest)
0.1.0
Created 13 October 2018.
This gradle plugin creates the META-INF/susel.metadata file representing the metadata about the service providers in a given Java module (in the JPMS sense).
Using the plugins DSL:
plugins {
id("ud.susel.susel-gradle-plugin") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ud.susel:susel-gradle-plugin:0.1.0")
}
}
apply(plugin = "ud.susel.susel-gradle-plugin")
Using the plugins DSL:
plugins {
id "ud.susel.susel-gradle-plugin" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ud.susel:susel-gradle-plugin:0.1.0"
}
}
apply plugin: "ud.susel.susel-gradle-plugin"