Search Gradle plugins

Version 1.90 (latest)

Created 24 June 2023.

Builds Jandex index for Java class files

Using the plugins DSL:

plugins {
  id("com.github.vlsi.jandex") version "1.90"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.vlsi.gradle:jandex-plugin:1.90")
  }
}

apply(plugin = "com.github.vlsi.jandex")

Using the plugins DSL:

plugins {
  id "com.github.vlsi.jandex" version "1.90"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.vlsi.gradle:jandex-plugin:1.90"
  }
}

apply plugin: "com.github.vlsi.jandex"

Learn how to apply plugins to subprojects