-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
75 lines (64 loc) · 1.94 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
// Apply plugins
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1'
}
}
repositories {
mavenCentral()
maven {
url 'http://conjars.org/repo'
}
}
// Basic configuration and settings for all (sub-)projects
allprojects {
group = 'de.webis.chatnoir2'
version = '1.0-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
implementation group: 'org.elasticsearch', name: 'elasticsearch-hadoop', version: '7.13.4'
implementation group: 'org.jsoup', name: 'jsoup', version: '1.10.2'
implementation group: 'org.json', name: 'json', version: '20201115'
implementation group: 'org.apache.hadoop', name: 'hadoop-common', version: '2.10.1'
implementation group: 'org.apache.hadoop', name: 'hadoop-mapreduce-client-core', version: '2.10.1'
implementation group: 'de.webis.aitools', name: 'aitools4-aq-web-page-content-extraction', version: '1.0'
implementation group: 'de.webis.aitools', name: 'aitools3-ie-languagedetection', version: '1.1'
implementation group: 'de.webis.corpora', name: 'webis-uuid', version: '1.0'
}
jar {
zip64 true
}
shadowJar {
zip64 true
}
}
// Set POM definition
ext.pomDef = {
name = 'chatnoir2-indexer'
description = 'Indexing Component for ChatNoir'
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'