-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (30 loc) · 905 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
buildscript {
repositories {
mavenCentral()
jcenter()
mavenLocal()
}
dependencies {
classpath "org.elasticsearch.gradle:build-tools:${elasticsearchVersion}"
}
}
apply plugin: 'java'
compileJava {
sourceCompatibility = JavaVersion.VERSION_12
targetCompatibility = JavaVersion.VERSION_12
}
apply plugin: 'elasticsearch.esplugin'
apply plugin: 'elasticsearch.yaml-rest-test'
group = "org.elasticsearch.plugin.analysis"
version = "1.0.0"
esplugin {
description 'A duplicate text filter plugin'
classname 'org.elasticsearch.plugin.analysis.AnalysisCopyPastePlugin'
licenseFile rootProject.file('LICENSE.txt')
noticeFile rootProject.file('NOTICE.txt')
}
dependencies {
yamlRestTestRuntime "org.apache.logging.log4j:log4j-slf4j-impl:${versions.log4j}"
yamlRestTestRuntime "org.apache.logging.log4j:log4j-core:${versions.log4j}"
}
validateNebulaPom.enabled = false