dev.lukebemish.jvmfinder-jetbrains-convention
Owner:
Luke Bemish
Toolchains resolver using the same index used by Jetbrains IDEs and Amper. Automatically configures toolchain management.
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. Automatically configures toolchain management.
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.lukebemish.jvmfinder-jetbrains-convention") 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-convention:dev.lukebemish.jvmfinder-jetbrains-convention.gradle.plugin:0.1.2") }It can then be applied in the precompiled script plugin:plugins { id("dev.lukebemish.jvmfinder-jetbrains-convention") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.lukebemish.jvmfinder-jetbrains-convention:dev.lukebemish.jvmfinder-jetbrains-convention.gradle.plugin:0.1.2") } } apply(plugin = "dev.lukebemish.jvmfinder-jetbrains-convention") - Applying plugins to all subprojects .