-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
84 lines (65 loc) · 2.22 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
buildscript {
ext {
// ES version we depend upon/ compile against.
version_es = '6.2.4'
}
repositories {
mavenCentral()
jcenter()
mavenLocal()
}
dependencies {
classpath "org.elasticsearch.gradle:build-tools:" + version_es
}
}
group 'com.purbon.search'
version '1.0-es6.2.4-snapshot'
apply plugin: 'java'
apply plugin: 'elasticsearch.esplugin'
apply plugin: 'idea'
// this is temporal and will be fixed in 6.0
ext.projectSubstitutions = [:]
sourceCompatibility = 1.8
// license of this project
licenseFile = rootProject.file('LICENSE')
// copyright notices
noticeFile = rootProject.file('NOTICE')
esplugin {
name 'fairsearch'
description 'Fair search plugin'
classname 'com.purbon.search.fair.FairSearchQueryParserPlugin'
// license of this project
licenseFile = rootProject.file('LICENSE')
// copyright notices
noticeFile = rootProject.file('NOTICE')
}
// 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
repositories {
mavenCentral()
mavenLocal()
jcenter()
}
dependencies {
compile "org.apache.lucene:lucene-expressions:7.1.0"
compile 'org.elasticsearch:elasticsearch:'+version_es
compile "com.github.spullara.mustache.java:compiler:0.9.3"
compile group: 'org.apache.commons', name: 'commons-math3', version: '3.6.1'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.8.10'
testCompile 'org.elasticsearch.test:framework:'+version_es
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'com.mashape.unirest', name: 'unirest-java', version: '1.4.9'
}
dependencyLicenses {
mapping from: /lucene-.*/, to: 'lucene'
}
// Set to false to not use elasticsearch checkstyle rules
checkstyleMain.enabled = true
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