com.cdsap.talaiot.plugin.elasticsearch
所有者: Inaki Villar Algaba
一个简单且可扩展的插件,用于跟踪 Gradle 项目的任务和构建时间。
https://github.com/cdsap/Talaiot
源: https://github.com/cdsap/Talaiot
版本 1.4.2(最新版本)
1.4.2
创建于 2021 年 3 月 7 日。
由于该插件版本仅使用 JCenter 中的依赖项(JCenter 成为一个永久重定向到 Maven Central 后将不再解析),请参阅以下博客文章以获取详细信息:https://blog.gradle.org.cn/portal-jcenter-impact Talaiot, Elastic Search Plugin, 简单且可扩展的插件,用于跟踪 Gradle 项目的任务和构建时间。
使用 插件 DSL
plugins {
id("com.cdsap.talaiot.plugin.elasticsearch") version "1.4.2"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.cdsap.talaiot.plugin:elasticsearch:1.4.2")
}
}
apply(plugin = "com.cdsap.talaiot.plugin.elasticsearch")
使用 插件 DSL
plugins {
id "com.cdsap.talaiot.plugin.elasticsearch" version "1.4.2"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.cdsap.talaiot.plugin:elasticsearch:1.4.2"
}
}
apply plugin: "com.cdsap.talaiot.plugin.elasticsearch"