搜索 Gradle 插件

使用 插件 DSL

plugins {
  id("org.jmailen.kotlinter") version "4.4.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.jmailen.gradle:kotlinter-gradle:4.4.1")
  }
}

apply(plugin = "org.jmailen.kotlinter")

使用 插件 DSL

plugins {
  id "org.jmailen.kotlinter" version "4.4.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.jmailen.gradle:kotlinter-gradle:4.4.1"
  }
}

apply plugin: "org.jmailen.kotlinter"

学习如何将插件应用于子项目