forked from KennFalcon/elasticsearch-analysis-hanlp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
117 lines (96 loc) · 2.76 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
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath "org.elasticsearch.gradle:build-tools:${elasticsearchVersion}"
}
}
group = 'org.elasticsearch'
version = "$elasticsearchVersion"
description = 'elasticsearch-analysis-hanlp'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'elasticsearch.esplugin'
esplugin {
name 'analysis-hanlp'
description 'HanLP Analyzer for ElasticSearch'
classname 'org.elasticsearch.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/analysis-hanlp-${elasticsearchVersion}.zip").renameTo(file("build/distributions/${rootProject.name}-${elasticsearchVersion}.zip"))
ant.checksum file: "build/distributions/${rootProject.name}-${elasticsearchVersion}.zip"
}
}
configurations.all() {
Configuration configuration ->
configuration.resolutionStrategy.failOnVersionConflict()
configuration.resolutionStrategy.force(['commons-codec:commons-codec:1.15'])
configuration.resolutionStrategy.force(['commons-logging:commons-logging:1.2'])
configuration.resolutionStrategy.force(['org.apache.httpcomponents:httpclient:4.5.13'])
configuration.resolutionStrategy.force(['org.apache.httpcomponents:httpcore:4.4.14'])
}
dependencies {
compile 'com.hankcs:hanlp:portable-1.7.8'
compile 'commons-codec:commons-codec:1.15'
compile 'commons-logging:commons-logging:1.2'
compile 'org.apache.httpcomponents:httpclient:4.5.13'
compile 'org.apache.httpcomponents:httpcore:4.4.14'
}
checkstyle {
sourceSets = [project.sourceSets.main]
}
checkstyleMain {
excludes = ['**/PorterStemmer.java']
}
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
}