-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
114 lines (87 loc) · 3.09 KB
/
build.gradle
File metadata and controls
114 lines (87 loc) · 3.09 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.5.3'
id 'io.spring.dependency-management' version '1.1.7'
id 'org.jetbrains.kotlin.jvm'
}
group = 'com.assu'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
google()
mavenCentral()
}
dependencies {
// Spring boot
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
// spring security
implementation 'org.springframework.boot:spring-boot-starter-security'
testImplementation 'org.springframework.security:spring-security-test'
// redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
// rabbit mq
implementation 'org.springframework.boot:spring-boot-starter-amqp'
testImplementation 'org.springframework.amqp:spring-rabbit-test'
// webflux; webclient
implementation 'org.springframework.boot:spring-boot-starter-webflux'
// batch
implementation 'org.springframework.boot:spring-boot-starter-batch'
testImplementation 'org.springframework.batch:spring-batch-test'
//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'
// GSON
implementation 'com.google.code.gson:gson:2.11.0'
// S3
implementation platform('software.amazon.awssdk:bom:2.25.33')
implementation 'software.amazon.awssdk:s3'
// jsoup (crawl)
implementation 'org.jsoup:jsoup:1.21.1'
// lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// Swagger 3 (SpringDoc OpenAPI)
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.4'
// chatting
implementation 'org.springframework.boot:spring-boot-starter-websocket'
// maria db
implementation 'org.mariadb.jdbc:mariadb-java-client:3.4.1'
// spring test
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// junit
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
// h2 db (test)
runtimeOnly 'com.h2database:h2'
// JSON 처리
implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation group: 'org.javassist', name: 'javassist', version: '3.15.0-GA'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
// 공간 데이터
implementation("org.hibernate.orm:hibernate-spatial")
implementation("org.locationtech.jts:jts-core:1.19.0")
// fcm
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
//implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation 'com.google.auth:google-auth-library-oauth2-http:1.18.0'
implementation 'com.google.firebase:firebase-admin:9.2.0'
// amqp
implementation("org.springframework.boot:spring-boot-starter-amqp")
implementation("com.fasterxml.jackson.core:jackson-databind")
// health-check
implementation 'org.springframework.boot:spring-boot-starter-actuator'
}
tasks.named('test') {
useJUnitPlatform()
}