com.athaydes.sdkman
Owner:
Renato Athaydes
A Gradle Plugin that enforces a specific SDKMAN! JVM is used by Gradle
https://renatoathaydes.github.io/sdkman-gradle-plugin/index.html
Sources: https://github.com/renatoathaydes/sdkman-gradle-plugin
Version 1.0-RC3 (latest)
Created 24 October 2020.
A Gradle Plugin that enforces a specific SDKMAN! JVM is used by Gradle
Add this plugin to your build using the plugins DSL:
plugins {
id("com.athaydes.sdkman") version "1.0-RC3"
}
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.athaydes.sdkman:com.athaydes.sdkman.gradle.plugin:1.0-RC3") }
It can then be applied in the precompiled script plugin:plugins { id("com.athaydes.sdkman") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.athaydes.sdkman:com.athaydes.sdkman.gradle.plugin:1.0-RC3") } } apply(plugin = "com.athaydes.sdkman")
- Applying plugins to all subprojects .