-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
115 lines (90 loc) · 3.25 KB
/
Copy pathbuild.gradle
File metadata and controls
115 lines (90 loc) · 3.25 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.1'
id 'io.spring.dependency-management' version '1.1.4'
}
group = 'nova'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
sourceSets {
main {
resources {
srcDirs = ['src/main/resources', 'MJS-BACK-SECURITY']
}
}
}
tasks.named('processResources') {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
// 빌드시 jar 파일 한개만 생성하기
jar {
enabled = false
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'jakarta.validation:jakarta.validation-api:3.0.2'
implementation 'org.hibernate.validator:hibernate-validator:8.0.1.Final'
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
// sql 쿼리 성능 체크
implementation 'com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.9.0'
//AWS S3
implementation 'software.amazon.awssdk:s3:2.20.136'
// API 문서 openAPI swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0'
// H2 내장형 테스트용 DB
implementation 'com.h2database:h2'
// JWT 생성 라이브러리 추가
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
implementation 'io.jsonwebtoken:jjwt-impl:0.11.5'
implementation 'io.jsonwebtoken:jjwt-jackson:0.11.5'
implementation 'commons-codec:commons-codec:1.15'
//jsoup 의존성 추가
implementation 'org.jsoup:jsoup:1.16.1'
implementation 'org.postgresql:postgresql'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
// 통합 테스트(@Testcontainers) - 버전은 Spring Boot BOM 이 관리
testImplementation 'org.springframework.boot:spring-boot-testcontainers'
testImplementation 'org.testcontainers:junit-jupiter'
testImplementation 'org.testcontainers:postgresql'
//webclient
implementation 'org.springframework.boot:spring-boot-starter-webflux'
//Json parse
implementation 'org.json:json:20210307'
// Elasticsearch 제거: PostgreSQL 통합검색(unified_search_index)으로 전환
//Email 인증
implementation 'org.springframework.boot:spring-boot-starter-mail'
// Redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
// Mongodb
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
// Komoran
implementation 'com.github.shin285:KOMORAN:3.3.9'
// FCM 푸시 (Firebase Admin) - 키워드 알림 발송
implementation 'com.google.firebase:firebase-admin:9.9.0'
//websocket
implementation 'org.springframework.boot:spring-boot-starter-websocket'
//spring log 수집 관련
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'io.micrometer:micrometer-registry-prometheus'
}
test {
useJUnitPlatform()
}