forked from Talk-Pick/TalkPick_Server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
140 lines (106 loc) · 4.11 KB
/
build.gradle
File metadata and controls
140 lines (106 loc) · 4.11 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
plugins {
id 'java'
id 'org.springframework.boot' version '3.3.7'
id 'io.spring.dependency-management' version '1.1.7'
}
group = 'talkPick'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
// Spring
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// Security
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-security'
testImplementation 'org.springframework.security:spring-security-test'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.11.5'
implementation group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.11.5'
implementation group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.11.5'
// Lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// Bouncy Castle 의존성
implementation 'org.bouncycastle:bcprov-jdk18on:1.78.1'
// JPA (MySQL) 관련 의존성
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'mysql:mysql-connector-java:8.0.33'
// Jackson
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
// Querydsl
implementation 'com.querydsl:querydsl-jpa:5.0.0:jakarta'
annotationProcessor "com.querydsl:querydsl-apt:5.0.0:jakarta"
annotationProcessor "jakarta.annotation:jakarta.annotation-api"
annotationProcessor "jakarta.persistence:jakarta.persistence-api"
// Test
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// MapStruct
implementation 'org.mapstruct:mapstruct:1.5.5.Final'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.5.Final'
annotationProcessor 'org.projectlombok:lombok-mapstruct-binding:0.2.0'
// Jakarta Validation API
implementation 'jakarta.validation:jakarta.validation-api:3.0.2'
implementation 'org.hibernate.validator:hibernate-validator:8.0.0.Final'
// Validation starter
implementation 'org.springframework.boot:spring-boot-starter-validation'
// Swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.1.0'
implementation 'javax.servlet:javax.servlet-api:4.0.1'
// Jasypt
implementation 'com.github.ulisesbocchio:jasypt-spring-boot-starter:3.0.5'
implementation 'org.passay:passay:1.6.2'
implementation 'org.springframework.security:spring-security-crypto'
// Monitoring
implementation 'io.micrometer:micrometer-registry-prometheus'
// Actuator
implementation 'org.springframework.boot:spring-boot-starter-actuator'
// WebFlux
implementation 'org.springframework.boot:spring-boot-starter-webflux'
// Retry
implementation 'org.springframework.retry:spring-retry'
// AOP
implementation 'org.springframework.boot:spring-boot-starter-aop'
// Bucket4j
implementation group: 'com.github.vladimir-bukhtoyarov', name: 'bucket4j-core', version: '7.6.0'
// Cache
implementation 'org.springframework.boot:spring-boot-starter-cache'
// Caffeine
implementation group: 'com.github.ben-manes.caffeine', name: 'caffeine', version: '3.2.1'
// Resilience4j
implementation 'io.github.resilience4j:resilience4j-spring-boot3:2.1.0'
// Jackson
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
}
test {
useJUnitPlatform()
}
def generated = layout.buildDirectory.dir("generated/querydsl")
sourceSets {
main {
java {
srcDirs += generated
}
}
}
clean.doLast {
file(generated).deleteDir()
}
jar {
enabled = false
}