-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·49 lines (41 loc) · 1.51 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
42
43
44
45
46
47
48
49
buildscript {
repositories {
maven {
url groupUrl
// url "http://dl.bintray.com/eddgrant/maven"
}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.2.RELEASE")
classpath "io.spring.gradle:dependency-management-plugin:0.6.0.RELEASE"
classpath 'de.aaschmid:gradle-cpd-plugin:1.0'
}
}
// ext.mpd = new com.eddgrant.mpd.MavenPasswordDecrypter()
apply plugin: "maven-publish"
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: "io.spring.dependency-management"
apply plugin: 'org.springframework.boot'
apply from: 'gradle/common.gradle'
apply from: 'gradle/mavenauth.gradle'
dependencyManagement {
imports {
mavenBom "com.zxy:zxy-commons-bom:${commonsBomVersion}"
// mavenBom "org.springframework.cloud:spring-cloud-dependencies:Brixton.SR7"
}
}
dependencies {
// compile('org.springframework.cloud:spring-cloud-starter-eureka')
compile('org.springframework.boot:spring-boot-starter-actuator')
compile('org.springframework.cloud:spring-cloud-starter-hystrix-dashboard')
// compile('org.springframework.cloud:spring-cloud-netflix-turbine')
compile("com.netflix.turbine:turbine-core") {
exclude group: "javax.servlet", module: "servlet-api"
exclude group: "com.netflix.rxjava", module: "rxjava-core"
exclude group: "org.slf4j", module: "slf4j-simple"
exclude group: "org.mockito", module: "org.mockito"
}
}