Search Gradle plugins

org.gradle.toolchains.foojay-resolver-convention

Owner: Gradle

Toolchains resolver using the Foojay Disco API for resolving Java runtimes. Automatically configures toolchain management.

https://github.com/gradle/foojay-toolchains

Sources: https://github.com/gradle/disco-toolchains

Version 0.5.0

0.5.0

Created 24 April 2023.

- Generate useful error message if used with unsupported Gradle versions

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.gradle.toolchains:foojay-resolver:0.5.0")
      }
    }
    
    apply(plugin = "org.gradle.toolchains.foojay-resolver-convention")
  • Applying plugins to all subprojects .