Search Gradle plugins

Version 2.4.0.2

Created 07 December 2020.

A plugin that helps you use kotlin and spring boot

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects