-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
62 lines (54 loc) · 2.21 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
57
58
59
60
61
62
buildscript {
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:1.0.5.RELEASE"
}
}
plugins {
id 'org.springframework.boot' version '2.1.3.RELEASE'
id 'java'
id 'idea'
id 'jacoco'
}
apply plugin: 'io.spring.dependency-management'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
test {
finalizedBy jacocoTestReport
// jacocoTestReport {
// reports {
// xml.enabled false
// csv.enabled false
// html.destination "${buildDir}/jacocoHtml"
// }
// }
}
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-starter-parent:Finchley.SR2'
}
}
dependencies {
testCompile group: 'junit', name: 'junit'
testCompile group: 'org.springframework.boot', name: 'spring-boot-starter-test'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-security'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa'
compile group: 'org.springframework.boot', name: 'spring-boot-autoconfigure'
compile group: 'org.springframework.boot', name: 'spring-boot-devtools'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-actuator'
compile group: 'org.springframework.cloud', name: 'spring-cloud-starter-netflix-eureka-server'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-zuul'
compile group: 'org.springframework.cloud', name: 'spring-cloud-starter'
compile group: 'org.postgresql', name: 'postgresql'
compile group: 'org.apache.commons', name: 'commons-dbcp2'
compile group: 'io.jsonwebtoken', name: 'jjwt', version: '0.9.1'
compile group: 'com.google.code.gson', name: 'gson'
compile group: 'com.google.api-client', name: 'google-api-client', version: '1.28.0'
compile group: 'com.google.oauth-client', name: 'google-oauth-client-jetty', version: '1.28.0'
compile group: 'com.google.apis', name: 'google-api-services-calendar', version: 'v3-rev377-1.25.0'
}