搜索Gradle插件

版本 1.2.0(最新版本)

1.2.0

创建于2021年12月1日。

在GitHub上获取两个hash之间的提交更改

使用插件DSL

plugins {
  id("dev.mrfishcakes.crunchyupdater") version "1.2.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("dev.mrfishcakes:CrunchyUpdater:1.2.0")
  }
}

apply(plugin = "dev.mrfishcakes.crunchyupdater")

使用插件DSL

plugins {
  id "dev.mrfishcakes.crunchyupdater" version "1.2.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "dev.mrfishcakes:CrunchyUpdater:1.2.0"
  }
}

apply plugin: "dev.mrfishcakes.crunchyupdater"

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