-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (27 loc) · 984 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
36
37
buildscript {
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.6.RELEASE")
}
repositories {
mavenLocal()
jcenter()
}
}
apply plugin: 'java'
apply plugin: 'spring-boot'
repositories {
mavenLocal()
jcenter()
}
dependencies {
compile group: fabric3Group, name: 'fabric3-node', version: fabric3Version , transitive: false
compile group: fabric3Group, name: 'fabric3-node-extensions', version: fabric3Version, transitive: false
compile group: fabric3Group, name: 'profile-rs', version: fabric3Version, classifier: 'bin', ext: 'zip'
compile group: fabric3Group, name: 'fabric3-spring-boot', version: fabric3Version, transitive: false
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-actuator")
testCompile 'junit:junit:4.12'
}
bootRepackage {
mainClass = 'org.fabric3.samples.springboot.StartSample'
}