forked from hypergraphql/hypergraphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
56 lines (43 loc) · 1.62 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
apply plugin: 'java'
apply plugin: 'maven'
group = 'org.hypergraphql'
version = '1.1.4'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
maven { url "http://repo.maven.apache.org/maven2" }
}
ext {
jenaVersion = '3.6.0'
}
dependencies {
compile group: 'com.graphql-java', name: 'graphql-java', version: '6.0'
compile group: 'org.apache.jena', name: 'jena-arq', version: jenaVersion
compile group: 'org.apache.jena', name: 'jena', version: jenaVersion
compile group: 'org.apache.jena', name: 'jena-core', version: jenaVersion
compile group: 'org.apache.jena', name: 'jena-fuseki-embedded', version: jenaVersion
compile group: 'log4j', name: 'log4j', version: '1.2.17'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.5'
compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.5'
compile group: 'com.sparkjava', name: 'spark-core', version: '2.5'
compile group: 'com.sparkjava', name: 'spark-template-velocity', version: '2.5.5'
compile group: 'com.mashape.unirest', name: 'unirest-java', version: '1.4.9'
testCompile group: 'org.mockito', name: 'mockito-core', version: '2.11.0'
testCompileOnly('org.apiguardian:apiguardian-api:1.0.0')
testImplementation(
'org.junit.jupiter:junit-jupiter-api:5.1.0'
)
testRuntimeOnly(
'org.junit.jupiter:junit-jupiter-engine:5.1.0'
)
}
//test {
// useJUnitPlatform()
//}
task execute(type:JavaExec) {
main = 'org.hypergraphql.Application'
classpath = sourceSets.main.runtimeClasspath
if(project.hasProperty('a')){
args(a.split(','))
}
}