Search Gradle plugins

com.specificlanguages.jbr-toolchain

Download a specific version of the JetBrains Runtime (JBR) and expose it as a JVM toolchain

https://specificlanguages.com

Sources: https://github.com/specificlanguages/mps-gradle-plugin

Version 1.0.0 (latest)

Created 11 January 2025.

Download a specific version of the JetBrains Runtime (JBR) and expose it as a JVM toolchain

Add this plugin to your build using the plugins DSL:

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