搜索 Gradle 插件

io.github.udaychandra.susel

拥有者: Uday

此 Gradle 插件创建表示指定 Java 模块的实现者元数据的 META-INF/susel.metadata 文件。

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

源代码: https://github.com/udaychandra/susel-gradle-plugin

版本 0.1.2 (最新版本)

0.1.2

创建于 2018 年 10 月 14 日。

此 Gradle 插件创建表示指定 Java 模块的实现者元数据的 META-INF/susel.metadata 文件。

使用 插件 DSL

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

使用 旧插件应用

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

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

使用 插件 DSL

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

使用 旧插件应用

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

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

了解如何将插件应用于子项目