-
Notifications
You must be signed in to change notification settings - Fork 12
/
build.gradle
37 lines (31 loc) · 946 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "org.elasticsearch.gradle:build-tools:${es_version}"
}
}
repositories {
mavenLocal()
mavenCentral()
}
group = 'org.elasticsearch.plugin'
version = "${plugin_version}"
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'elasticsearch.esplugin'
apply plugin: 'elasticsearch.yaml-rest-test'
esplugin {
name 'pathhierarchy-aggregation'
description 'Return a path hierarchy aggregation'
classname 'org.opendatasoft.elasticsearch.plugin.PathHierarchyAggregation'
licenseFile = rootProject.file('LICENSE')
noticeFile = rootProject.file('README.md')
}
dependencies {
implementation "org.elasticsearch:elasticsearch:${es_version}"
yamlRestTestImplementation "org.elasticsearch.test:framework:${es_version}"
yamlRestTestImplementation "org.apache.logging.log4j:log4j-core:2.17.1"
}