Search Gradle plugins

Owner: nico

Settings-plugin that applies the Foojay toolchain resolver so requested JDK versions auto-provision without Gradle's no-toolchain-repositories deprecation warning.

https://codeberg.org/visionary_software/java-conventions

Sources: https://codeberg.org/visionary_software/java-conventions.git

Version 2026.05.10 (latest)

Created 25 May 2026.

Settings-plugin that applies the Foojay toolchain resolver so requested JDK versions auto-provision without Gradle's no-toolchain-repositories deprecation warning.

Add this plugin to your build using the plugins DSL:

plugins {
  id("software.visionary.settings") version "2026.05.10"
}

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