Search Gradle plugins

org.galaxx.gradle.jandex

Gradle plugin to generate Jandex index files. Currently the plugin only adds a step to jar tasks to generate Jandex index and include it in the jar.

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

Version 1.0.0

Created 06 March 2015.

No version description available.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects