ajk.gradle.elastic
Owner: Amir Kibbar
an ElasticSearch plugin for gradle to help running ElasticSearch during integration test
https://github.com/amirkibbar/bilberry
Sources: https://github.com/amirkibbar/bilberry.git
Version 0.0.20 (latest)
Created 30 January 2018.
an ElasticSearch plugin for gradle to help running ElasticSearch during integration test
Add this plugin to your build using the plugins DSL:
plugins {
id("ajk.gradle.elastic") version "0.0.20"
}
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("ajk.gradle.elastic:ajk.gradle.elastic.gradle.plugin:0.0.20") }
It can then be applied in the precompiled script plugin:plugins { id("ajk.gradle.elastic") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ajk.gradle.elastic:ajk.gradle.elastic.gradle.plugin:0.0.20") } } apply(plugin = "ajk.gradle.elastic")
- Applying plugins to all subprojects .