-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
123 lines (97 loc) · 4.34 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
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
116
117
118
119
120
121
122
123
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.4'
id 'io.spring.dependency-management' version '1.1.4'
}
group = 'com.dear'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
google() // Google의 Maven 저장소 추가
mavenCentral()
}
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-web'
implementation 'org.springframework.boot:spring-boot-starter-websocket'
compileOnly 'org.projectlombok:lombok'
implementation 'javax.mail:javax.mail-api:1.6.2'
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 'com.github.ulisesbocchio:jasypt-spring-boot-starter:3.0.5'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.4'
implementation 'org.apache.httpcomponents.client5:httpclient5:5.3.1'
runtimeOnly 'com.mysql:mysql-connector-j'
annotationProcessor 'org.projectlombok:lombok'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.boot:spring-boot-starter-validation'
// Spring Boot에서 Redis를 사용하기 위한 의존성입니다.
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
//queryDsl
implementation 'com.querydsl:querydsl-jpa:5.0.0:jakarta'
annotationProcessor "com.querydsl:querydsl-apt:${dependencyManagement.importedProperties['querydsl.version']}:jakarta"
annotationProcessor "jakarta.annotation:jakarta.annotation-api"
annotationProcessor "jakarta.persistence:jakarta.persistence-api"
//aws
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'
//socket ( stomp )
implementation 'org.webjars:stomp-websocket:2.3.4'
// 파일 수정 시 재시작하지 않고 자동 컴파일 될 수 있도록 하기위한 라이브러리
implementation 'org.springframework.boot:spring-boot-devtools'
//망고 디비
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
//rabbitMQ
implementation 'org.springframework.boot:spring-boot-starter-amqp'
implementation 'io.projectreactor.netty:reactor-netty'
implementation 'io.netty:netty-transport:4.1.107.Final'
implementation 'io.netty:netty-codec:4.1.107.Final'
//google cloud api
implementation 'com.google.cloud:google-cloud-vision:3.34.0'
// json
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
// cloud vision
implementation platform('com.google.cloud:libraries-bom:26.1.4')
implementation 'com.google.cloud:google-cloud-bigquery'
// gcp storage 의존성
implementation 'org.springframework.cloud:spring-cloud-gcp-starter:1.2.8.RELEASE'
implementation 'org.springframework.cloud:spring-cloud-gcp-storage:1.2.8.RELEASE'
//firebase 의존성
implementation 'com.google.firebase:firebase-admin:9.2.0'
implementation 'org.jsoup:jsoup:1.17.2'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
//batch
implementation 'org.springframework.boot:spring-boot-starter-batch'
//health check
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.apache.tomcat:tomcat-catalina:10.1.19' // 사용 중인 Tomcat 버전으로 변경
// //neis
// implementation 'org.springframework:spring-context:6.0.6'
// implementation 'org.springframework:spring-web:6.0.6'
// implementation 'org.springframework:spring-tx:6.0.6'
//
// implementation 'com.fasterxml.jackson.core:jackson-annotations:2.14.2'
// implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.2'
// implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
//
// implementation 'com.googlecode.json-simple:json-simple:1.1.1'
}
tasks.named('test') {
useJUnitPlatform()
}
tasks.withType(JavaCompile).configureEach {
options.compilerArgs.add("-parameters")
}