co.elastic.code.gradle-manifest-plugin
所有者: Elastic 发布工程团队
用于生成由 https://github.com/elastic/java-langserver 消费的清单文件的 Gradle 插件
https://github.com/elastic/gradle-code-manifest-plugin
源代码: https://github.com/elastic/gradle-code-manifest-plugin.git
版本 0.1.1 (最新)
0.1.1
创建于 2019年9月3日。
用于生成由 https://github.com/elastic/java-langserver 消费的清单文件的 Gradle 插件
使用 插件 DSL
plugins {
id("co.elastic.code.gradle-manifest-plugin") version "0.1.1"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.co.elastic.code:gradle-manifest-plugin:0.1.1")
}
}
apply(plugin = "co.elastic.code.gradle-manifest-plugin")
使用 插件 DSL
plugins {
id "co.elastic.code.gradle-manifest-plugin" version "0.1.1"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.co.elastic.code:gradle-manifest-plugin:0.1.1"
}
}
apply plugin: "co.elastic.code.gradle-manifest-plugin"