-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
111 lines (86 loc) · 3.46 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.3.0'
id 'io.spring.dependency-management' version '1.1.5'
}
group = 'com.adregamdi'
version = '0.0.1-SNAPSHOT'
jar.enabled = false
java {
sourceCompatibility = '17'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'com.auth0:java-jwt:4.4.0'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
implementation 'org.springframework.boot:spring-boot-starter-aop'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
// 레디스
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
// 애플 로그인을 위한 라이브러리
implementation 'com.auth0:jwks-rsa:0.21.1'
implementation 'org.json:json:20231013'
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
// QueryDSL
implementation 'com.querydsl:querydsl-jpa:5.0.0:jakarta'
implementation "com.querydsl:querydsl-core"
implementation "com.querydsl:querydsl-collections"
annotationProcessor "com.querydsl:querydsl-apt:${dependencyManagement.importedProperties['querydsl.version']}:jakarta"
// java.lang.NoClassDefFoundError (javax.annotation.Generated) 에러 대응 코드
annotationProcessor "jakarta.annotation:jakarta.annotation-api"
// java.lang.NoClassDefFoundError (javax.annotation.Entity) 에러 대응 코드
annotationProcessor "jakarta.persistence:jakarta.persistence-api"
annotationProcessor 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.mysql:mysql-connector-j'
// aws
implementation 'io.awspring.cloud:spring-cloud-starter-aws:2.4.4'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
// 이미지 리사이징 을 위한 라이브러리
implementation group: 'org.imgscalr', name: 'imgscalr-lib', version: '4.2'
// 동영상 압축을 위한 라이브러리
implementation 'ws.schild:jave-core:3.5.0'
implementation 'ws.schild:jave-all-deps:3.5.0'
// 썸네일 제작을 위한 라이브러리
implementation 'org.bytedeco:javacv-platform:1.5.9'
// 이미지 메타데이터 추출 라이브러리
implementation 'com.drewnoakes:metadata-extractor:2.18.0'
}
tasks.named('test') {
useJUnitPlatform()
}
///// 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)
}
//// submodule 폴더 내 변동사항 현 플젝에 적용 task
task copyPrivate(type: Copy) {
copy {
from './BackEnd-Config'
into 'src/main/resources'
}
}