-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle
51 lines (40 loc) · 1.33 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
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath "org.elasticsearch.gradle:build-tools:5.4.0"
}
}
repositories {
mavenCentral()
jcenter()
}
group = 'org.elasticsearch.plugin'
version = '5.4.0'
apply plugin: 'java'
apply plugin: 'elasticsearch.esplugin'
apply plugin: 'idea'
esplugin {
name 'elasticsearch-japanese-suggester'
description 'Suggester for Japanese'
classname 'org.elasticsearch.plugin.JapaneseSuggesterPlugin'
}
// 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:${versions.elasticsearch}"
compile "org.apache.lucene:lucene-analyzers-kuromoji:${versions.lucene}"
testCompile "org.elasticsearch.test:framework:${versions.elasticsearch}"
}
// Uncomment to not use elasticsearch checkstyle rules
// checkstyleMain.enabled = false
checkstyleTest.enabled = false
// 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