-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
88 lines (70 loc) · 2.85 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
plugins {
id 'org.springframework.boot' version '2.5.8'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.labate'
version = '1.0'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
ext {
set('springCloudVersion', "2020.0.5")
}
dependencies {
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa', version: '2.4.0'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-oauth2-client', version: '2.4.0'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-validation', version: '2.4.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.6.4'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:2.6.4'
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
runtimeOnly 'mysql:mysql-connector-java'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
annotationProcessor 'org.projectlombok:lombok'
implementation 'org.modelmapper:modelmapper:3.0.0'
implementation 'org.springframework.boot:spring-boot-starter-cache:2.6.4'
// Actuator
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation group: 'io.micrometer', name: 'micrometer-registry-prometheus', version: '1.8.2'
// Swagger
implementation group: 'io.springfox', name: 'springfox-swagger2', version: '2.9.2'
implementation group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.9.2'
// Password
implementation 'org.passay:passay:1.6.1'
// Mail
implementation 'org.springframework.boot:spring-boot-starter-mail:2.6.5'
// GCP
implementation 'com.google.cloud:spring-cloud-gcp-starter-storage:2.0.0'
implementation 'com.google.firebase:firebase-admin:8.1.0'
//JWT
implementation 'io.jsonwebtoken:jjwt-api:0.11.2'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.2'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.2'
//POI
implementation group: 'io.github.millij', name: 'poi-object-mapper', version: '1.0.0'
// UT
testImplementation 'org.mockito:mockito-junit-jupiter:4.5.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}
jar {
enabled = false
}
test {
useJUnitPlatform()
}