-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
70 lines (63 loc) · 2.77 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
// Apply plugins
apply plugin: 'java'
apply plugin: 'war'
group = 'de.webis.chatnoir2'
version = '2.0.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
javadoc.options.encoding = 'UTF-8'
dependencies {
// Third-party dependencies
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.15.0'
implementation group: 'javax.servlet', name: 'javax.servlet-api', version: '3.1.0'
implementation group: 'io.netty', name: 'netty-all', version: '4.1.43.Final'
implementation group: 'org.elasticsearch.client', name: 'transport', version: '6.8.2'
implementation group: 'org.apache.shiro', name: 'shiro-core', version: '1.4.0'
implementation group: 'org.apache.shiro', name: 'shiro-web', version: '1.4.0'
implementation group: 'org.apache.shiro', name: 'shiro-ehcache', version: '1.4.0'
implementation group: 'commons-validator', name: 'commons-validator', version: '1.6'
implementation group: 'com.github.spullara.mustache.java', name: 'compiler', version: '0.9.4'
implementation group: 'org.json', name: 'json', version: '20160810'
implementation group: 'org.reflections', name: 'reflections', version: '0.9.10'
implementation group: 'com.cybozu.labs', name: 'langdetect', version: '1.1-20120112'
implementation group: 'org.apache.hadoop', name: 'hadoop-client', version: '2.9.2'
implementation group: 'org.jsoup', name: 'jsoup', version: '1.10.2'
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.2'
implementation group: 'com.vladsch.flexmark', name: 'flexmark', version: '0.19.5'
implementation group: 'com.vladsch.flexmark', name: 'flexmark-ext-anchorlink', version: '0.19.5'
implementation group: 'com.vladsch.flexmark', name: 'flexmark-ext-tables', version: '0.19.5'
// Webis dependencies
implementation group: 'de.webis.corpora', name: 'webis-uuid', version: '1.0'
// Test dependencies
testImplementation group: 'junit', name: 'junit', version: '4.11'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '2.8.47'
}
test {
systemProperties = [ 'catalina.home': '/tmp/chatnoir2-test' ]
}
// Set POM definition
ext.pomDef = {
name = 'chatnoir2-webclient'
description = 'ChatNoir Web Frontend'
url = 'https://webis.de'
licenses {
license {
name = 'MIT License'
url = 'https://opensource.org/licenses/MIT'
}
}
developers {
developer {
name = 'Janek Bevendorff'
email = '[email protected]'
}
}
organization {
name = 'Webis'
url = 'https://webis.de'
}
}
// Include Artifactory configuration
apply from: 'artifactory.gradle'