-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
35 lines (31 loc) · 938 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
buildscript {
repositories {
maven { url "http://repo.spring.io/libs-release" }
mavenLocal()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.0.2.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
jar {
baseName = 'mqtt-integration'
version = '0.4.0'
}
repositories {
mavenCentral()
maven { url "http://repo.spring.io/libs-release" }
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-integration:1.0.2.RELEASE")
compile("org.springframework.integration:spring-integration-twitter:4.0.0.RELEASE")
compile("org.springframework.integration:spring-integration-mqtt:4.0.0.RELEASE")
compile("org.springframework.integration:spring-integration-file:4.0.0.RELEASE")
testCompile("junit:junit:4.11")
}
task wrapper(type: Wrapper) {
gradleVersion = '1.11'
}