-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
55 lines (49 loc) · 1.43 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
// Apply plugins
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
group = 'de.webis.chatnoir2'
version = '1.0-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
// Set source file encoding
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
javadoc.options.encoding = 'UTF-8'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1'
}
}
dependencies {
implementation group: 'org.apache.hadoop', name: 'hadoop-client', version: '2.7.4'
implementation group: 'com.github.albfernandez', name: 'juniversalchardet', version: '2.1.0'
implementation group: 'org.json', name: 'json', version: '20170516'
implementation group: 'de.webis.corpora', name: 'webis-uuid', version: '1.0'
}
// Set POM definition
ext.pomDef = {
name = 'chatnoir2-mapfile-generator'
description = 'ChatNoir Corpus MapFile Generator'
url = 'https://webis.de'
licenses {
license {
name = 'Apache 2.0 License'
url = 'https://www.apache.org/licenses/LICENSE-2.0'
}
}
developers {
developer {
name = 'Janek Bevendorff'
email = '[email protected]'
}
}
organization {
name = 'Webis'
url = 'https://webis.de'
}
}
// Include Artifactory configuration
apply from: 'artifactory.gradle'