Search Gradle plugins

lv.brain.gradle.javaEnumFinder

Owner: brain.lv

The Java Enum Finder is a Gradle plugin designed to search for usages of specific Java Enum classes in your project's main source. The plugin scans through the source code files to find occurrences of the specified enums and reports the files and line numbers where these enums are used.

https://github.com/brain-lv/java-enum-finder

Sources: https://github.com/brain-lv/java-enum-finder.git

Version 1.0.0 (latest)

Created 30 August 2023.

The Java Enum Finder is a Gradle plugin designed to search for usages of specific Java Enum classes in your project's main source. The plugin scans through the source code files to find occurrences of the specified enums and reports the files and line numbers where these enums are used.

Using the plugins DSL:

plugins {
  id("lv.brain.gradle.javaEnumFinder") version "1.0.0"
}

Using legacy plugin application:

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

apply(plugin = "lv.brain.gradle.javaEnumFinder")

Using the plugins DSL:

plugins {
  id "lv.brain.gradle.javaEnumFinder" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "lv.brain.gradle:plugin:1.0.0"
  }
}

apply plugin: "lv.brain.gradle.javaEnumFinder"

Learn how to apply plugins to subprojects