-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
122 lines (97 loc) · 2.92 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath "org.opensearch.gradle:build-tools:${opensearchVersion}"
classpath "org.opensearch:opensearch-core:${opensearchVersion}"
classpath "org.opensearch:opensearch-common:${opensearchVersion}"
}
}
plugins {
id 'java'
}
group = 'org.opensearch.plugin'
version = "$opensearchVersion"
description = 'opensearch-analysis-hanlp'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'opensearch.opensearchplugin'
loggerUsageCheck.enabled = false
validateNebulaPom.enabled = false
opensearchplugin {
name 'opensearch-analysis-hanlp'
description 'HanLP Analyzer for Opensearch'
classname 'org.opensearch.plugin.analysis.hanlp.AnalysisHanLPPlugin'
licenseFile = rootProject.file('LICENSE.txt')
noticeFile = rootProject.file('NOTICE.txt')
}
jar {
archiveBaseName.set(rootProject.name)
}
javadocJar {
archiveBaseName.set(rootProject.name)
}
sourcesJar {
archiveBaseName.set(rootProject.name)
}
assemble {
doLast {
file("build/distributions/opensearch-analysis-hanlp-${opensearchVersion}.zip").renameTo(file("build/distributions/${rootProject.name}.zip"))
ant.checksum file: "build/distributions/${rootProject.name}.zip"
}
}
configurations.all() {
Configuration configuration ->
configuration.resolutionStrategy.failOnVersionConflict()
configuration.resolutionStrategy.force(['commons-codec:commons-codec:1.16.0'])
configuration.resolutionStrategy.force(['commons-logging:commons-logging:1.3.0'])
configuration.resolutionStrategy.force(['org.apache.httpcomponents.client5:httpclient5:5.3'])
configuration.resolutionStrategy.force(['org.apache.httpcomponents.core5:httpcore5:5.2.4'])
}
dependencies {
implementation 'com.hankcs:hanlp:portable-1.7.8'
implementation 'commons-codec:commons-codec:1.16.0'
implementation 'commons-logging:commons-logging:1.3.0'
implementation 'org.apache.httpcomponents.client5:httpclient5:5.3'
implementation 'org.apache.httpcomponents.core5:httpcore5:5.2.4'
}
forbiddenApisMain {
excludes = [
'**/AnalysisHanLPPlugin.class',
'**/PorterStemmer.class',
'**/RemoteDictConfig.class',
'**/DictionaryFileCache.class',
'**/ExtMonitor.class',
'**/model/*.class',
'**/CoreStopWordDictionary.class'
]
}
forbiddenPatterns {
forbiddenPatterns.enabled = false;
}
licenseHeaders {
licenseHeaders.enabled = false
}
dependencyLicenses {
dependencyLicenses.enabled = false
}
thirdPartyAudit {
thirdPartyAudit.enabled = false
}
validateNebulaPom {
validateNebulaPom.enabled = false
}
loggerUsageCheck {
loggerUsageCheck.enabled = false
}
test {
systemProperty 'tests.security.manager', 'false'
}
testingConventions {
testingConventions.enabled = false
}
javadoc {
enabled = false
}