-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
74 lines (52 loc) · 1.81 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
plugins {
id 'org.springframework.boot' version '2.6.2'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.mumulcom'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
//인코딩 방식
compileJava.options.encoding = 'UTF-8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
//Spring Data JPA
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.6.2'
//JDBC
implementation 'org.springframework.boot:spring-boot-starter-jdbc:2.6.2'
//Security
implementation 'org.springframework.boot:spring-boot-starter-security:2.6.2'
//Web
implementation 'org.springframework.boot:spring-boot-starter-web:2.6.2'
//Lombok
compileOnly 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
//MySQL
runtimeOnly 'mysql:mysql-connector-java:8.0.25'
//AWS
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.0.1.RELEASE'
//JWT
implementation group: 'io.jsonwebtoken', name: 'jjwt', version: '0.9.1'
implementation 'io.jsonwebtoken:jjwt:0.9.1'
//DozerMapper
implementation 'com.github.dozermapper:dozer-core:6.5.2'
//Validation
implementation 'org.springframework.boot:spring-boot-starter-validation:2.6.2'
//Firebase
implementation 'com.google.firebase:firebase-admin:8.1.0'
//OkHttp
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.6.2'
testImplementation 'org.springframework.security:spring-security-test:5.5.1'
implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter-aws', version: '2.2.1.RELEASE'
}
test {
useJUnitPlatform()
}