Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This is a multi bucket aggregation.
Installation
------------

`bin/plugin --install path_hierarchy --url "https://github.com/opendatasoft/elasticsearch-aggregation-pathhierarchy/releases/download/v7.17.6.1/pathhierarchy-aggregation-7.17.6.1.zip"`
`bin/plugin --install path_hierarchy --url "https://github.com/opendatasoft/elasticsearch-aggregation-pathhierarchy/releases/download/v8.15.2.1/pathhierarchy-aggregation-8.15.2.1.zip"`

Build
-----
Expand Down Expand Up @@ -309,7 +309,7 @@ Built with Java 17.
The first 3 digits of plugin version is Elasticsearch versioning. The last digit is used for plugin versioning under an elasticsearch version.

To install it, launch this command in Elasticsearch directory replacing the url with a release suiting your case (please check available releases [here](https://github.com/opendatasoft/elasticsearch-aggregation-pathhierarchy/releases)):
`./bin/elasticsearch-plugin install https://github.com/opendatasoft/elasticsearch-aggregation-pathhierarchy/releases/download/v7.17.6.1/pathhierarchy-aggregation-7.17.6.1.zip`
`./bin/elasticsearch-plugin install https://github.com/opendatasoft/elasticsearch-aggregation-pathhierarchy/releases/download/v8.15.2.1/pathhierarchy-aggregation-8.15.2.1.zip`


License
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ esplugin {

dependencies {
implementation "org.elasticsearch:elasticsearch:${es_version}"
yamlRestTestImplementation "org.elasticsearch.test:framework:${es_version}"
yamlRestTestImplementation "org.apache.logging.log4j:log4j-core:2.17.1"
testImplementation "org.apache.logging.log4j:log4j-core:2.17.1"
testImplementation "org.elasticsearch.test:framework:${es_version}"
}
5 changes: 3 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "3.7"
version: "3.8"

networks:
es-network:
Expand All @@ -11,6 +11,7 @@ services:
target: elasticsearch-plugin-debug
environment:
- discovery.type=single-node
- xpack.security.enabled=false
# NO DEBUG
# - ES_JAVA_OPTS=-Xms512m -Xmx512m
# DEBUG
Expand All @@ -23,7 +24,7 @@ services:
- es-network

kibana:
image: docker.elastic.co/kibana/kibana:7.17.5
image: docker.elastic.co/kibana/kibana:8.15.2
environment:
ELASTICSEARCH_HOSTS: http://elasticsearch-plugin-debug:9200/
ports:
Expand Down
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.elastic.co/elasticsearch/elasticsearch:7.17.6 AS elasticsearch-plugin-debug
FROM docker.elastic.co/elasticsearch/elasticsearch:8.15.2 AS elasticsearch-plugin-debug

COPY /build/distributions/pathhierarchy-aggregation-7.17.6.1.zip /tmp/pathhierarchy-aggregation-7.17.6.1.zip
RUN ./bin/elasticsearch-plugin install file:/tmp/pathhierarchy-aggregation-7.17.6.1.zip
COPY /build/distributions/pathhierarchy-aggregation-8.15.2.1.zip /tmp/pathhierarchy-aggregation-8.15.2.1.zip
RUN ./bin/elasticsearch-plugin install file:/tmp/pathhierarchy-aggregation-8.15.2.1.zip
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
es_version = 7.17.6
plugin_version = 7.17.6.1
es_version = 8.15.2
plugin_version = 8.15.2.1
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading