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.1.0 (latest)

Created 11 September 2024.

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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("lv.brain.gradle.javaEnumFinder:lv.brain.gradle.javaEnumFinder.gradle.plugin:1.1.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("lv.brain.gradle.javaEnumFinder")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("lv.brain.gradle.javaEnumFinder:lv.brain.gradle.javaEnumFinder.gradle.plugin:1.1.0")
      }
    }
    
    apply(plugin = "lv.brain.gradle.javaEnumFinder")
  • Applying plugins to all subprojects .