-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
25 lines (18 loc) · 756 Bytes
/
Copy pathbuild.gradle
File metadata and controls
25 lines (18 loc) · 756 Bytes
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
group 'be.kdg.bhs'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile files ('libs/conveyorservice-1.0.jar','libs/flightservice-1.0.jar')
compile 'com.rabbitmq:amqp-client:4.1.0'
compile group: 'org.slf4j', name: 'slf4j-organizer', version: '1.7.21'
compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.21'
compile group: 'log4j', name: 'log4j', version: '1.2.17'
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'javax.json', name: 'javax.json-api', version: '1.0'
compile group: 'org.glassfish', name: 'javax.json', version: '1.0.4'
compile group: 'org.json', name: 'json', version: '20160810'
}