com.github.jchanghong.jch
Owner: jchanghong
A plugin that helps you test your plugin against a variety of Gradle versions
https://github.com/jchanghong/kotlin-libs/wiki
Sources: https://github.com/ysb33r/gradleTest.git
Version 2022.5 (latest)
2022.5
Created 07 January 2022.
A plugin that helps you use kotlin and spring boot
Using the plugins DSL:
plugins {
id("com.github.jchanghong.jch") version "2022.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.jchanghong:kotlin-gradle-plugin:2022.5")
}
}
apply(plugin = "com.github.jchanghong.jch")
Using the plugins DSL:
plugins {
id "com.github.jchanghong.jch" version "2022.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.jchanghong:kotlin-gradle-plugin:2022.5"
}
}
apply plugin: "com.github.jchanghong.jch"