cgoit.gradle.elasticsearch
Owner: Carsten Götzinger
an ElasticSearch plugin for gradle to help running ElasticSearch during integration test
https://github.com/cgoIT/gradle-elasticsearch-plugin
Sources: https://github.com/cgoIT/gradle-elasticsearch-plugin.git
Version 0.2.3.1 (latest)
Created 26 June 2020.
An ElasticSearch gradle plugin for starting an ElasticSearch within a gradle build.
Add this plugin to your build using the plugins DSL:
plugins {
id("cgoit.gradle.elasticsearch") version "0.2.3.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("cgoit.gradle.elasticsearch:cgoit.gradle.elasticsearch.gradle.plugin:0.2.3.1") }
It can then be applied in the precompiled script plugin:plugins { id("cgoit.gradle.elasticsearch") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("cgoit.gradle.elasticsearch:cgoit.gradle.elasticsearch.gradle.plugin:0.2.3.1") } } apply(plugin = "cgoit.gradle.elasticsearch")
- Applying plugins to all subprojects .