-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
43 lines (34 loc) · 1.21 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
plugins {
id 'com.github.johnrengelman.shadow' version '4.0.1'
id 'java'
id 'maven'
}
group = 'org.gesis'
version = '1.0-SNAPSHOT'
description = """"""
jar {
manifest {
attributes "Main-Class": "org.gesis.reshaperdf.App"
}
}
repositories {
mavenCentral()
}
shadowJar {
mergeServiceFiles()
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
dependencies {
compile group: 'com.github.jsonld-java', name: 'jsonld-java', version:'0.8.3'
compile group: 'org.openrdf.sesame', name: 'sesame-rio-ntriples', version:'2.8.9'
compile group: 'org.openrdf.sesame', name: 'sesame-rio-rdfxml', version:'2.8.9'
compile group: 'org.openrdf.sesame', name: 'sesame-rio-turtle', version:'2.8.9'
compile group: 'org.openrdf.sesame', name: 'sesame-rio-jsonld', version:'2.8.9'
compile group: 'commons-logging', name: 'commons-logging', version:'1.2'
compile group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version:'2.0-beta7'
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version:'2.0-beta7'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version:'2.0-beta7'
compile group: 'com.opencsv', name: 'opencsv', version:'3.7'
}