搜索Gradle插件

版本 1.0.10(最新版)

1.0.10

创建于2024年8月7日。

用于保持生成的代码与生成过程同步的实用工具

使用插件DSL

plugins {
  id("co.elastic.check-in-generated") version "1.0.10"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("co.elastic.gradle:check-in-generated:1.0.10")
  }
}

apply(plugin = "co.elastic.check-in-generated")

使用插件DSL

plugins {
  id "co.elastic.check-in-generated" version "1.0.10"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "co.elastic.gradle:check-in-generated:1.0.10"
  }
}

apply plugin: "co.elastic.check-in-generated"

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