-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
50 lines (45 loc) · 1.16 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
// Apply plugins
apply plugin: 'java'
apply plugin: 'application'
// Basic configuration and settings for all (sub-)projects
allprojects {
group = 'de.webis.corpora'
version = '1.0'
mainClassName = 'de.webis.WebisUUID'
sourceCompatibility = 1.8
targetCompatibility = 1.8
// Declare global dependencies
dependencies {
implementation group: 'commons-codec', name: 'commons-codec', version: '1.9'
}
// Set MANIFEST.MF contents
jar {
manifest {
attributes('Main-Class': mainClassName)
}
}
}
// Set POM definition
ext.pomDef = {
name = 'webis-uuid'
description = 'Webis Corpus Data UUID Generation Tool'
url = 'https://webis.de'
licenses {
license {
name = 'MIT License'
url = 'http://www.opensource.org/licenses/mit-license.php'
}
}
developers {
developer {
name = 'Janek Bevendorff'
email = 'janek.bevendorff@uni-weimar.de'
}
}
organization {
name = 'Webis'
url = 'https://webis.de'
}
}
// Include Artifactory configuration
apply from: 'artifactory.gradle'