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)
1.1.0
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.
Using the plugins DSL:
plugins {
id("lv.brain.gradle.javaEnumFinder") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("lv.brain.gradle:plugin:1.1.0")
}
}
apply(plugin = "lv.brain.gradle.javaEnumFinder")
Using the plugins DSL:
plugins {
id "lv.brain.gradle.javaEnumFinder" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "lv.brain.gradle:plugin:1.1.0"
}
}
apply plugin: "lv.brain.gradle.javaEnumFinder"