-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
36 lines (31 loc) · 985 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
plugins {
id 'com.github.johnrengelman.shadow' version '2.0.2'
id 'java'
id 'idea'
}
version = "1.0.0"
group = "org.rdfostrich.hobbit.mocha.versioning"
archivesBaseName = "OstrichHobbitMochaVersioningAdapter"
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
maven {
name "University Leipzig, AKSW Maven2 Repository"
url "http://maven.aksw.org/repository/internal"
}
maven {
name "University Leipzig, AKSW Maven2 Snapshots Repository"
url "http://maven.aksw.org/repository/snapshots"
}
}
dependencies {
compile group: 'com.rabbitmq', name: 'amqp-client', version: '3.6.0'
compile group: 'org.hobbit', name: 'core', version: '1.0.8'
compile group: 'org.aksw.jena-sparql-api', name: 'jena-sparql-api-core', version: '3.1.0-2-SNAPSHOT'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
shadowJar {
// Needed to make Jena initialize properly
mergeServiceFiles()
}