co.elastic.code.gradle-manifest-plugin
Gradle plugin to generate a manifest file consumed by https://github.com/elastic/java-langserver
https://github.com/elastic/gradle-code-manifest-plugin
Sources: https://github.com/elastic/gradle-code-manifest-plugin.git
Version 0.1.1 (latest)
0.1.1
Created 03 September 2019.
Gradle plugin to generate a manifest file consumed by https://github.com/elastic/java-langserver
Using the plugins DSL:
plugins {
id("co.elastic.code.gradle-manifest-plugin") version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.co.elastic.code:gradle-manifest-plugin:0.1.1")
}
}
apply(plugin = "co.elastic.code.gradle-manifest-plugin")
Using the plugins DSL:
plugins {
id "co.elastic.code.gradle-manifest-plugin" version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.co.elastic.code:gradle-manifest-plugin:0.1.1"
}
}
apply plugin: "co.elastic.code.gradle-manifest-plugin"