Search Gradle plugins

io.github.udaychandra.susel

Owner: Uday

This gradle plugin creates the META-INF/susel.metadata file representing the metadata about the service providers in a given Java module.

https://github.com/udaychandra/susel-gradle-plugin

Sources: https://github.com/udaychandra/susel-gradle-plugin

Version 0.1.2 (latest)

Created 14 October 2018.

This gradle plugin creates the META-INF/susel.metadata file representing the metadata about the service providers in a given Java module.

Using the plugins DSL:

plugins {
  id("io.github.udaychandra.susel") version "0.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.udaychandra.susel:susel-gradle-plugin:0.1.2")
  }
}

apply(plugin = "io.github.udaychandra.susel")

Using the plugins DSL:

plugins {
  id "io.github.udaychandra.susel" version "0.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.udaychandra.susel:susel-gradle-plugin:0.1.2"
  }
}

apply plugin: "io.github.udaychandra.susel"

Learn how to apply plugins to subprojects