forked from gitahinganga/similarity-scoring
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
50 lines (42 loc) · 1.2 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
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'org.elasticsearch.gradle:build-tools:7.9.1'
}
}
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'elasticsearch.testclusters'
apply plugin: 'elasticsearch.esplugin'
eclipse {
jdt {
sourceCompatibility = 11
targetCompatibility = 11
javaRuntimeName = "OpenJDK 11.0.1"
}
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
group = 'org.intrahealth'
version = '0.0.6-es7.9.1'
esplugin {
name 'string-similarity-scoring'
description 'A script engine to use string similarity algorithms for scoring documents'
classname 'org.intrahealth.elasticsearch.plugin.similarity.script.SimilarityScoringPlugin'
licenseFile=rootProject.file('LICENSE.txt')
noticeFile=rootProject.file('NOTICE.txt')
}
test.enabled = false
dependencyLicenses.enabled = false
loggerUsageCheck.enabled = false //disable because only works with java 1.8 and below
validateNebulaPom.enabled = false
integTest.enabled = false
testingConventions.enabled = false
dependencies {
compile 'info.debatty:java-string-similarity:1.2.1'
}