Search Gradle plugins

Analyzes compiled JVM bytecode to provide class listing, symbol search, call graph traversal, class detail inspection, interface implementation lookup, and package dependency analysis. Designed for coding agents and human developers.

https://github.com/anderssv/gradle-code-navigator

Sources: https://github.com/anderssv/gradle-code-navigator

Version 0.1.0 (latest)

Created 17 March 2026.

Analyzes compiled JVM bytecode to provide class listing, symbol search, call graph traversal, class detail inspection, interface implementation lookup, and package dependency analysis. Designed for coding agents and human developers.

Gradle features compatibility:
Configuration cache

Add this plugin to your build using the plugins DSL:

plugins {
  id("no.f12.code-navigator") version "0.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("no.f12.code-navigator:no.f12.code-navigator.gradle.plugin:0.1.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("no.f12.code-navigator")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("no.f12.code-navigator:no.f12.code-navigator.gradle.plugin:0.1.0")
      }
    }
    
    apply(plugin = "no.f12.code-navigator")
  • Applying plugins to all subprojects .