-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
56 lines (46 loc) · 1.17 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
53
54
55
56
plugins {
id 'java'
id 'eclipse'
id 'jacoco'
id 'com.github.ben-manes.versions' version '0.14.0'
id 'org.springframework.boot' version '1.5.1.RELEASE'
id 'org.sonarqube' version '2.2.1'
}
ext['lombok.version'] = '1.16.14'
jar {
baseName = 'spring-cloud-aws-demo'
version = '0.0.2'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven {
url {
'https://repo.spring.io/libs-release'
}
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-aws:1.1.3.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'org.springframework.boot:spring-boot-starter-hateoas'
compile 'org.projectlombok:lombok'
compile 'com.google.code.gson:gson:2.8.0'
testCompile 'org.springframework.boot:spring-boot-starter-test'
}
bootRun {
systemProperties = System.properties
}
test {
systemProperties = System.properties
}
sonarqube {
properties {
property "sonar.jacoco.reportPaths", ["build/jacoco/test.exec"]
property "sonar.groovy.jacoco.reportPath", "build/jacoco/test.exec"
}
}
jacoco {
toolVersion = "0.7.9"
}