-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.gradle
52 lines (42 loc) · 1.72 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
50
51
52
buildscript {
repositories { jcenter() }
dependencies {
classpath 'io.spring.gradle:dependency-management-plugin:0.5.2.RELEASE'
classpath 'com.netflix.nebula:gradle-extra-configurations-plugin:latest.release'
classpath 'com.netflix.nebula:nebula-release-plugin:3.0.0'
classpath 'com.netflix.nebula:gradle-netflixoss-project-plugin:3.1.0'
}
}
apply plugin: 'java'
apply plugin: 'nebula.nebula-release'
apply plugin: 'nebula.netflixoss'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'nebula.optional-base'
group = 'com.netflix.spring'
targetCompatibility = '1.8'
sourceCompatibility = '1.8'
repositories {
jcenter()
maven { url 'http://repo.spring.io/snapshot' }
}
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-netflix:1.1.0.BUILD-SNAPSHOT'
}
}
dependencies {
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'org.springframework.boot:spring-boot-starter-actuator'
compile 'org.springframework.boot:spring-boot-starter-aop'
compile 'org.springframework.cloud:spring-cloud-starter-eureka', optional
compile 'org.springframework.boot:spring-boot-starter-integration', optional
compile 'org.springframework.integration:spring-integration-java-dsl', optional
compile 'com.netflix.spectator:spectator-api:0.30.0', optional
compile 'com.netflix.spectator:spectator-reg-servo:0.30.0', optional
compile 'com.netflix.spectator:spectator-ext-sandbox:0.30.0', optional
compile 'com.netflix.servo:servo-atlas:0.11.2', optional
compile 'com.netflix.frigga:frigga:0.13'
testCompile 'junit:junit:latest.release'
testCompile 'org.mockito:mockito-core'
testCompile 'org.springframework:spring-test'
}