搜索Gradle插件

版本 4.1.4(最新版)

4.1.4

创建于2024年5月31日。

Gradle的Kotlin多平台和多项目配置插件:bug-finder(目前,Detekt)

使用插件DSL

plugins {
  id("io.github.gciatto.kt-mpp.bug-finder") version "4.1.4"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.gciatto:kt-mpp:4.1.4")
  }
}

apply(plugin = "io.github.gciatto.kt-mpp.bug-finder")

使用插件DSL

plugins {
  id "io.github.gciatto.kt-mpp.bug-finder" version "4.1.4"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.gciatto:kt-mpp:4.1.4"
  }
}

apply plugin: "io.github.gciatto.kt-mpp.bug-finder"

了解如何应用插件到子项目