-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (27 loc) · 851 Bytes
/
build.gradle
File metadata and controls
32 lines (27 loc) · 851 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
26
27
28
29
30
31
32
group 'pt.danielcosta.test'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'application'
sourceCompatibility = 1.8
mainClassName='SimpleSenderReceiver'
repositories {
mavenCentral()
}
sourceSets {
main {
java {
srcDirs = ['src/java']
}
resources {
srcDirs = ['src/resources']
}
}
}
dependencies {
compile group: 'org.apache.geronimo.specs', name: 'geronimo-jms_1.1_spec', version: '1.1.1'
compile group: 'org.apache.qpid', name: 'qpid-amqp-1-0-common', version: '0.32'
compile group: 'org.apache.qpid', name: 'qpid-amqp-1-0-client', version: '0.32'
compile group: 'org.apache.qpid', name: 'qpid-amqp-1-0-client-jms', version: '0.32'
testCompile group: 'junit', name: 'junit', version: '4.12'
}