forked from o19s/elasticsearch-learning-to-rank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
52 lines (41 loc) · 1.25 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()
mavenLocal()
}
dependencies {
classpath "org.elasticsearch.gradle:build-tools:5.1.1"
}
}
group = 'org.elasticsearch.plugin.ingest'
version = '0.0.1-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'elasticsearch.esplugin'
apply plugin: 'idea'
esplugin {
name 'ltr-query'
description 'Learing to Rank Query w/ Ranklib Scripting'
classname 'com.o19s.es.ltr.query.LtrQueryParserPlugin'
}
// 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()
}
dependencies {
compile 'org.elasticsearch:elasticsearch:5.1.1'
compile 'edu.umass.ciir:RankLib:2.6'
testCompile 'org.elasticsearch.test:framework:5.1.1'
}
// 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