-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
137 lines (105 loc) · 3.63 KB
/
build.gradle
File metadata and controls
137 lines (105 loc) · 3.63 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.0'
id 'io.spring.dependency-management' version '1.1.6'
}
version = '0.0.1-SNAPSHOT'
javadoc.options.encoding = 'UTF-8'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
querydsl.extendsFrom compileClasspath
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
// QueryDSL
implementation 'com.querydsl:querydsl-jpa:5.0.0'
annotationProcessor 'com.querydsl:querydsl-apt:5.0.0:jpa'
implementation 'com.github.shin285:KOMORAN:3.3.9'
// cloverApi
implementation 'com.squareup.okhttp3:okhttp:4.9.0'
implementation 'com.google.code.gson:gson:2.8.8'
implementation 'software.amazon.awssdk:s3:2.15.19'
// Apache HttpClient
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
// Apache HttpMime
implementation 'org.apache.httpcomponents:httpmime:4.5.13'
implementation 'com.google.cloud:google-cloud-speech:4.28.0'
// Spring Boot
implementation 'org.springframework.boot:spring-boot-starter-mail'
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'
implementation 'org.springframework.boot:spring-boot-starter-security'
// AWS
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'
implementation 'software.amazon.awssdk:s3:2.17.106'
implementation 'software.amazon.awssdk:auth:2.17.106'
implementation 'software.amazon.awssdk:regions:2.17.106'
// DB - Mysql
implementation 'mysql:mysql-connector-java'
// Test
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// Gson
implementation 'com.google.code.gson:gson'
//mapstruct
implementation "org.mapstruct:mapstruct:1.3.1.Final"
implementation "org.projectlombok:lombok:1.18.16"
implementation 'org.projectlombok:lombok-mapstruct-binding:0.2.0'
annotationProcessor "org.projectlombok:lombok-mapstruct-binding:0.2.0"
annotationProcessor "org.mapstruct:mapstruct-processor:1.3.1.Final"
annotationProcessor "org.projectlombok:lombok:1.18.16"
//redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.data:spring-data-redis'
// Security
implementation 'com.google.code.gson:gson'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5'
//mail 인증 관련
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
// WebSocket
implementation 'org.springframework.boot:spring-boot-starter-websocket'
// sockJS
implementation 'org.webjars:sockjs-client:1.5.1'
// stompJS
implementation 'org.webjars:stomp-websocket:2.3.4'
// web
implementation 'org.springframework.boot:spring-boot-starter-web'
// devtools
developmentOnly 'org.springframework.boot:spring-boot-devtools'
}
def querydslDir = layout.buildDirectory.dir("generated/querydsl").get().asFile
sourceSets {
main {
java {
srcDir querydslDir // QueryDSL 생성 파일 위치 설정
}
}
}
tasks.withType(JavaCompile) {
options.annotationProcessorPath = configurations.querydsl
}
tasks.named('javadoc') {
source = sourceSets.main.allJava
options.memberLevel = JavadocMemberLevel.PRIVATE
destinationDir = file("build/docs/javadoc")
}
jar {
enabled = false
}