-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
190 lines (145 loc) · 5.31 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.8'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
// querydsl plugin 추가
id "com.ewerk.gradle.plugins.querydsl" version "1.0.10"
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
// 하이버네이트 5.6.5로 바꿈.(하이버네이트 5.6.7버전 버그때문에)
ext["hibernate.version"] = "5.6.5.Final"
ext["queryDslVersion"] = "5.0.0"
///* 10-3. querydsl */
//configurations {
// compileOnly {
// extendsFrom annotationProcessor
// }
//}
repositories {
// 각종 의존성들을 어떤 원격 저장소에서 받을건지
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation' //@valid 사용
implementation 'org.springframework.boot:spring-boot-starter-aop' //aop 사용(자동 빈 후처리기(advisor)
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-hibernate5'
//websocket
implementation 'org.springframework.boot:spring-boot-starter-websocket'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
//websocket json
implementation group: 'org.json', name: 'json', version: '20230227'
//JPA, 스프링 데이터 JPA 추가
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
//Querydsl 추가
// implementation 'com.querydsl:querydsl-jpa' // 기존
// implementation 'com.querydsl:querydsl-apt' //추가
// annotationProcessor "com.querydsl:querydsl-apt:${dependencyManagement.importedProperties['querydsl.version']}:jpa"
// annotationProcessor "jakarta.annotation:jakarta.annotation-api" // java.lang.NoClassDefFoundError (javax.annotation.Generated) 대응 코드
// annotationProcessor "jakarta.persistence:jakarta.persistence-api" // java.lang.NoClassDefFoundError (javax.annotation.Generated) 대응 코드
// implementation "com.querydsl:querydsl-jpa:${queryDslVersion}" //추가추가
// annotationProcessor "com.querydsl:querydsl-apt:${queryDslVersion}" //추가추가
implementation "com.querydsl:querydsl-jpa:${queryDslVersion}" //추추가
implementation "com.querydsl:querydsl-apt:${queryDslVersion}" //추추가
implementation "com.querydsl:querydsl-core:${queryDslVersion}" //추추가
// compile(
// "com.querydsl:querydsl-core:${queryDslVersion}",
// "com.querydsl:querydsl-jpa:${queryDslVersion}"
// )
//
// annotationProcessor "com.querydsl:querydsl-apt:${queryDslVersion}:jpa",
// "org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.2.Final",
// "javax.annotation:javax.annotation-api:1.3.2",
//security
implementation 'org.springframework.boot:spring-boot-starter-security'
testImplementation 'org.springframework.security:spring-security-test'
testCompileOnly 'org.springframework.security:spring-security-test'
//oauth2
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
// //h2 database
// runtimeOnly 'com.h2database:h2'
//mysql
implementation 'mysql:mysql-connector-java:8.0.33'
//lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
//테스트에서 lombok 사용
testCompileOnly 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
//test junit
testImplementation 'junit:junit:4.13.1'
testImplementation("org.junit.vintage:junit-vintage-engine") {
exclude group: "org.hamcrest", module: "hamcrest-core"
}
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation 'org.junit.jupiter:junit-jupiter-api'
}
tasks.named('test') {
useJUnitPlatform()
}
// 부트 2.6이상 쿼리 버전 5.0.0
def qureydslDir = "$buildDir/generated/querydsl"
querydsl {
jpa = true
querydslSourcesDir = qureydslDir
}
sourceSets {
main.java.srcDir qureydslDir
}
compileQuerydsl{
options.annotationProcessorPath = configurations.querydsl
}
configurations {
compileOnly{
extendsFrom annotationProcessor
}
querydsl.extendsFrom compileClasspath
}
// 아돈노
//// Querydsl 설정부
//def generated = 'src/main/generated'
//
//// querydsl QClass 파일 생성 위치를 지정
//// 이 코드가 없으면 에러가 난다.
//tasks.withType(JavaCompile) {
// options.getGeneratedSourceOutputDirectory().set(file(generated))
//}
//
//// java source set 에 querydsl QClass 위치 추가
//sourceSets {
// main.java.srcDirs += [ generated ]
//}
//
//gradle clean 시에 QClass 디렉토리 삭제
//clean {
// delete file(generated)
//}
///* 자바 8 에서 사용한 qureydsl설정 */
///* 10-5. querydsl에서 사용할 경로 지정*/
//def querydslDir = "src/main/generated"
//
///* 10-6. JPA사용 여부와 사용할 경로를 지정*/
//
//querydsl {
// jpa = true
// querydslSourcesDir = querydslDir
//}
//
///* 10-7. build시 사용할 SourceSet 추가 */
//sourceSets {
// main.java.srcDir querydslDir
//}
///* 10-8. querydsl이 complieClasspath를 상속하도록 설정 */
//configurations {
// querydsl.extendsFrom compileClasspath
//}
///* 10-9. querydsl 컴파일시 사용할 옵션 설정 */
//compileQuerydsl {
// options.annotationProcessorPath = configurations.querydsl
//}