-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
85 lines (79 loc) · 3.22 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.8'
id 'io.spring.dependency-management' version '1.1.4'
}
allprojects {
group = 'io.oeid'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = 17
targetCompatibility = 17
}
repositories {
mavenCentral()
}
}
dependencies {
// Spring Boot Web
implementation 'org.springframework.boot:spring-boot-starter-web:3.1.8'
// Spring Boot Data JPA
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:3.1.8'
// Spring Boot Validation
implementation 'org.springframework.boot:spring-boot-starter-validation:3.1.8'
// Spring Boot AOP
implementation 'org.springframework.boot:spring-boot-starter-aop:3.1.8'
// Lombok
compileOnly 'org.projectlombok:lombok:1.18.30'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
// QueryDSL
implementation 'com.querydsl:querydsl-jpa:5.1.0:jakarta'
annotationProcessor 'com.querydsl:querydsl-apt:5.1.0:jakarta'
annotationProcessor "jakarta.annotation:jakarta.annotation-api:2.1.1"
annotationProcessor "jakarta.persistence:jakarta.persistence-api:3.1.0"
// MySQL
runtimeOnly 'com.mysql:mysql-connector-j:8.2.0'
// for spatial type in jpa 경도위도 계산
implementation 'org.hibernate:hibernate-spatial:6.4.1.Final'
implementation 'org.locationtech.jts:jts-core'
// Spring Boot Security
implementation 'org.springframework.boot:spring-boot-starter-security:3.1.8'
// Feign Client
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign:4.0.6'
// Firebase Admin
implementation 'com.google.firebase:firebase-admin:9.2.0'
// JWT
implementation 'com.auth0:java-jwt:4.4.0'
// Spring Boot Data Redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis:3.1.8'
// Swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2'
// Spring Boot WebFlux
implementation 'org.springframework.boot:spring-boot-starter-webflux:3.1.8'
// Spring Boot Data MongoDB
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb:3.1.8'
// Spring Boot WebSocket
implementation 'org.springframework.boot:spring-boot-starter-websocket:3.1.8'
// Spring Kafka
implementation 'org.springframework.kafka:spring-kafka:3.0.16'
// Spring Retry
implementation 'org.springframework.retry:spring-retry'
// Spring Boot MailSender
implementation 'org.springframework.boot:spring-boot-starter-mail:3.1.8'
// Flyway
implementation 'org.flywaydb:flyway-core:10.8.1'
implementation 'org.flywaydb:flyway-mysql:10.8.1'
// SpringBoot Test
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.1.8'
// TestContainers
testImplementation 'org.springframework.boot:spring-boot-testcontainers:3.1.8'
testImplementation 'org.testcontainers:junit-jupiter:1.19.3'
testImplementation 'org.testcontainers:mysql:1.19.3'
// Spring Security Test
testImplementation 'org.springframework.security:spring-security-test:6.1.3'
// Spring Kafka Test
testImplementation 'org.springframework.kafka:spring-kafka-test:3.0.16'
}
test {
useJUnitPlatform()
}