From 2c412e4510812c7b7300757f8e383863870d5d96 Mon Sep 17 00:00:00 2001 From: Ronald Dehuysser Date: Sun, 1 Aug 2021 01:06:32 +0200 Subject: [PATCH] Add capability for elasticsearch-rest-high-level-client --- .../src/main/java/io/quarkus/deployment/Capability.java | 2 ++ .../elasticsearch-rest-high-level-client/runtime/pom.xml | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/core/deployment/src/main/java/io/quarkus/deployment/Capability.java b/core/deployment/src/main/java/io/quarkus/deployment/Capability.java index fef8e049dc1f1..bec14e48bf5b3 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/Capability.java +++ b/core/deployment/src/main/java/io/quarkus/deployment/Capability.java @@ -56,6 +56,8 @@ public interface Capability { String MONGODB_PANACHE = QUARKUS_PREFIX + "mongodb.panache"; String MONGODB_PANACHE_KOTLIN = MONGODB_PANACHE + ".kotlin"; + String ELASTICSEARCH_REST_HIGH_LEVEL_CLIENT = QUARKUS_PREFIX + "elasticsearch-rest-high-level-client"; + String FLYWAY = QUARKUS_PREFIX + "flyway"; String LIQUIBASE = QUARKUS_PREFIX + "liquibase"; diff --git a/extensions/elasticsearch-rest-high-level-client/runtime/pom.xml b/extensions/elasticsearch-rest-high-level-client/runtime/pom.xml index 946dc9d14c689..dbf5f814d1877 100644 --- a/extensions/elasticsearch-rest-high-level-client/runtime/pom.xml +++ b/extensions/elasticsearch-rest-high-level-client/runtime/pom.xml @@ -97,6 +97,11 @@ io.quarkus quarkus-bootstrap-maven-plugin + + + io.quarkus.elasticsearch-rest-high-level-client + + org.apache.maven.plugins