-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
87 lines (73 loc) · 2.62 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
plugins {
id 'org.springframework.boot' version '2.5.4'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.yapp'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'junit:junit:4.13.1'
implementation 'junit:junit:4.13.1'
implementation 'org.projectlombok:lombok:1.18.20'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// [Security]
implementation 'org.springframework.boot:spring-boot-starter-security'
testImplementation 'org.springframework.security:spring-security-test'
// [JPA, PostgreSQL]
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation group: 'org.postgresql', name: 'postgresql', version: '42.2.23'
// [Lombok]
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// [JWT]
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.2'
implementation 'io.jsonwebtoken:jjwt-api:0.11.2'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.2'
// [REDIS]
implementation 'org.springframework.boot:spring-boot-starter-data-redis:2.5.4'
implementation 'io.lettuce:lettuce-core:6.1.4.RELEASE'
// [Swagger]
implementation 'io.springfox:springfox-swagger2:2.9.2'
implementation 'io.springfox:springfox-swagger-ui:2.9.2'
// [EMAIL]
implementation 'org.springframework.boot:spring-boot-starter-mail:2.5.4'
// [BATCH]
implementation 'org.springframework.boot:spring-boot-starter-batch:2.5.4'
// [SENTRY]
implementation 'io.sentry:sentry-spring-boot-starter:5.3.0'
implementation 'io.sentry:sentry-logback:5.3.0'
//[SLACK]
implementation 'com.slack.api:slack-api-client:1.13.0'
implementation 'com.slack.api:bolt:1.13.0'
// [TEST]
testImplementation 'org.assertj:assertj-core:3.21.0'
// [Mock]
testImplementation 'org.mockito:mockito-core:3.12.4'
/// + Static Method Mocking
testImplementation group: 'org.mockito', name: 'mockito-inline', version: '3.7.7'
testImplementation 'org.springframework.batch:spring-batch-test:4.3.3'
// [FireBaseCloudMessage]
implementation 'com.google.firebase:firebase-admin:6.8.1'
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.2.2'
// [Cloud Storage]
implementation 'com.google.cloud:google-cloud-storage'
}
test {
useJUnitPlatform()
}
// Build 후 .jar 파일이 두 개 생긴다.
// 접미사 plain 파일없이 단 하나의 .jar 만들기 위한 설정
jar {
enabled = false
}