Search Gradle plugins

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)

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).

Add this plugin to your build using the plugins DSL:

plugins {
  id("ud.susel.susel-gradle-plugin") version "0.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("ud.susel.susel-gradle-plugin:ud.susel.susel-gradle-plugin.gradle.plugin:0.1.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("ud.susel.susel-gradle-plugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ud.susel.susel-gradle-plugin:ud.susel.susel-gradle-plugin.gradle.plugin:0.1.0")
      }
    }
    
    apply(plugin = "ud.susel.susel-gradle-plugin")
  • Applying plugins to all subprojects .