-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
41 lines (34 loc) · 1.05 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
buildscript {
ext {
springVersion = "4.3.10.RELEASE"
springBootVersion = "1.5.6.RELEASE"
}
repositories { mavenCentral() }
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
}
}
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
repositories {
jcenter()
flatDir {
dirs "lib"
}
}
bootRun {
jvmArgs = ["-Dcom.ibm.mq.cfg.useIBMCipherMappings=false"]
}
dependencies {
compile name: "com.ibm.mq.allclient"
compile name: "bcprov-jdk15on-152"
compile name: "bcpkix-jdk15on-152"
compile "org.springframework.boot:spring-boot-starter:$springBootVersion"
compile "org.springframework.integration:spring-integration-core:${springVersion}"
compile "org.springframework.integration:spring-integration-jms:${springVersion}"
compile "org.springframework.integration:spring-integration-amqp:${springVersion}"
compile "javax.jms:jms:1.1"
}
jar {
from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}