搜索Gradle插件

org.galaxx.gradle.jandex

Gradle插件,用于生成Jandex索引文件。当前插件只添加一个jar任务步骤来生成Jandex索引并将其包含在jar中。

https://github.com/galaxx-org/org.galaxx.gradle

版本 1.0.2(最新版)

1.0.2

创建于2016年2月5日。

无版本描述信息。

使用插件DSL

plugins {
  id("org.galaxx.gradle.jandex") version "1.0.2"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.galaxx.gradle:jandex:1.0.2")
  }
}

apply(plugin = "org.galaxx.gradle.jandex")

使用插件DSL

plugins {
  id "org.galaxx.gradle.jandex" version "1.0.2"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.galaxx.gradle:jandex:1.0.2"
  }
}

apply plugin: "org.galaxx.gradle.jandex"

学习如何将插件应用于子项目