-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (32 loc) · 843 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
38
39
40
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "org.elasticsearch.gradle:build-tools:8.5.3"
}
}
plugins {
id 'java'
}
apply plugin: 'elasticsearch.esplugin'
esplugin {
name 'payload-score'
description 'Elasticsearch Custom Payload Score plugin'
classname 'nocode.elasticsearch.plugin.CustomPayloadScoreQueryPlugin'
}
group = 'nocode'
version = '0.1'
sourceCompatibility = '17'
repositories {
mavenCentral()
}
dependencies {
implementation group: 'org.elasticsearch', name: 'elasticsearch', version: '8.5.3'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.7.0'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.7.0'
}
test {
useJUnitPlatform()
}