-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
36 lines (30 loc) · 1.06 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
group 'com.vodafone.smartlife'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'spring-boot'
sourceCompatibility = 1.8
buildscript {
repositories {
maven { url "http://repo.spring.io/libs-release" }
mavenLocal()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.0.2.RELEASE")
}
}
bootRepackage {
mainClass = 'com.vodafone.smartlife.InboundClient'
//executable = true
}
repositories {
mavenCentral()
maven { url "http://repo.spring.io/libs-release" }
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-integration', version: '1.3.6.RELEASE'
compile group: 'org.springframework.integration', name: 'spring-integration-mqtt', version: '4.3.0.RELEASE'
compile 'org.springframework.integration:spring-integration-core:4.3.0.RELEASE'
compile group: 'org.springframework.integration', name: 'spring-integration-java-dsl', version: '1.1.3.RELEASE'
}