搜索 Gradle 插件

io.github.cdsap.talaiot.plugin.elasticsearch

Talaiot,Elastic Search 插件,简单且可扩展的插件,用于跟踪 Gradle 项目中的任务和构建时间。

https://github.com/cdsap/Talaiot

来源: https://github.com/cdsap/Talaiot

版本 2.0.4(最新版本)

2.0.4

创建于 2024年3月2日。

Talaiot,Elastic Search 插件,简单且可扩展的插件,用于跟踪 Gradle 项目中的任务和构建时间。

使用 plugins DSL

plugins {
  id("io.github.cdsap.talaiot.plugin.elasticsearch") version "2.0.4"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.cdsap.talaiot.plugin:elastic-search-plugin:2.0.4")
  }
}

apply(plugin = "io.github.cdsap.talaiot.plugin.elasticsearch")

使用 plugins DSL

plugins {
  id "io.github.cdsap.talaiot.plugin.elasticsearch" version "2.0.4"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.cdsap.talaiot.plugin:elastic-search-plugin:2.0.4"
  }
}

apply plugin: "io.github.cdsap.talaiot.plugin.elasticsearch"

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