forked from marziacutajar/RdfToArangoDBJson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (34 loc) · 803 Bytes
/
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
buildscript {
repositories {
mavenCentral()
}
}
plugins {
id 'application'
}
repositories {
mavenCentral()
}
apply plugin: 'java'
apply plugin: 'idea'
dependencies {
compile 'commons-cli:commons-cli:1.4'
compile 'org.apache.jena:apache-jena-libs:3.10.0'
//compile 'org.json:json:20090211'
compile 'com.fasterxml.jackson.core:jackson-core:2.9.8'
compile 'org.slf4j:slf4j-simple:1.7.26'
compile 'com.arangodb:arangodb-java-driver:5.0.4'
}
application {
mainClassName = 'com.rdfarango.Main'
}
task fatJar(type: Jar) {
manifest {
attributes (
'Main-Class': 'com.rdfarango.Main'
)
}
baseName = project.name
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}