Search Gradle plugins

Version 1.6.231

Created 29 December 2021.

A plugin that helps you use kotlin and spring boot

Using the plugins DSL:

plugins {
  id("com.github.jchanghong.jch") version "1.6.231"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.jchanghong:kotlin-gradle-plugin:1.6.231")
  }
}

apply(plugin = "com.github.jchanghong.jch")

Using the plugins DSL:

plugins {
  id "com.github.jchanghong.jch" version "1.6.231"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.jchanghong:kotlin-gradle-plugin:1.6.231"
  }
}

apply plugin: "com.github.jchanghong.jch"

Learn how to apply plugins to subprojects