-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
63 lines (48 loc) · 1.68 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
task wrapper(type: Wrapper) {
gradleVersion = '4.7'
}
buildscript {
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
dependencies {
classpath "org.elasticsearch.gradle:build-tools:6.2.4"
}
}
group = 'org.elasticsearch.plugin.ingest'
version = '0.0.1-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'elasticsearch.esplugin'
apply plugin: 'idea'
// license of this project
licenseFile = rootProject.file('LICENSE.txt')
// copyright notices
noticeFile = rootProject.file('NOTICE.txt')
esplugin {
name 'ingest-xml-to-json'
description 'Ingest processor to convert an XML document to a json document.'
classname 'org.elasticsearch.plugin.ingest.xml.to.json.IngestXmlToJsonPlugin'
// license of the plugin, may be different than the above license
licenseFile rootProject.file('LICENSE.txt')
// copyright notices, may be different than the above notice
noticeFile rootProject.file('NOTICE.txt')
}
// In this section you declare the dependencies for your production and test code
// Note, the two dependencies are not really needed as the buildscript dependency gets them in already
// they are just here as an example
dependencies {
compile 'org.elasticsearch:elasticsearch:6.2.4'
compile group: 'org.json', name: 'json', version: '20180130'
testCompile 'org.elasticsearch.test:framework:6.2.4'
}
// Set to false to not use elasticsearch checkstyle rules
checkstyleMain.enabled = true
checkstyleTest.enabled = true
// FIXME dependency license check needs to be enabled
dependencyLicenses.enabled = false
// FIXME thirdparty audit needs to be enabled
thirdPartyAudit.enabled = false
// Uncomment this to skip license header checks
// licenseHeaders.enabled = false