Search Gradle plugins

Toolchains resolver using the same index used by Jetbrains IDEs and Amper.

https://github.com/lukebemishprojects/jvmfinder

Sources: https://github.com/lukebemishprojects/jvmfinder.git

Version 0.1.2 (latest)

Created 24 March 2026.

Toolchains resolver using the same index used by Jetbrains IDEs and Amper.

Gradle features compatibility:
Configuration cache

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.lukebemish.jvmfinder-jetbrains") version "0.1.2"
}

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