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)
1.0-RC3
Created 24 October 2020.
A Gradle Plugin that enforces a specific SDKMAN! JVM is used by Gradle
Using the plugins DSL:
plugins {
id("com.athaydes.sdkman") version "1.0-RC3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.athaydes.gradle:sdkman-gradle-plugin:1.0-RC3")
}
}
apply(plugin = "com.athaydes.sdkman")
Using the plugins DSL:
plugins {
id "com.athaydes.sdkman" version "1.0-RC3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.athaydes.gradle:sdkman-gradle-plugin:1.0-RC3"
}
}
apply plugin: "com.athaydes.sdkman"