搜索Gradle插件

版本 0.3.5(最新版)

0.3.5

创建于2021年4月1日。

由于这个插件版本将不再在JCenter变为永久重定向到Maven Central之后解析(因为它只使用JCenter中可找到的依赖项),因此它将不再解析。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact

使用插件DSL

plugins {
  id("io.github.gciatto.kt-mpp-pp") version "0.3.5"
}

使用旧插件应用

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

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

使用插件DSL

plugins {
  id "io.github.gciatto.kt-mpp-pp" version "0.3.5"
}

使用旧插件应用

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

apply plugin: "io.github.gciatto.kt-mpp-pp"

了解如何将插件应用于子项目