-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
68 lines (55 loc) · 2.3 KB
/
Copy pathbuild.gradle
File metadata and controls
68 lines (55 loc) · 2.3 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.2'
id 'io.spring.dependency-management' version '1.1.4'
}
group = 'com.i'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation ('org.springframework.boot:spring-boot-starter-web')
implementation ('org.springframework.boot:spring-boot-starter-log4j2') {
exclude group: 'org.apache.logging.log4j', module: 'log4j-to-slf4j'
}
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.passay:passay:1.6.0'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:3.0.2'
implementation 'mysql:mysql-connector-java:8.0.32'
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.3'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter-test:3.0.3'
implementation 'org.springframework.boot:spring-boot-starter-security'
// 스프링 시큐리티를 사용하기 위한 스타터 추가
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
// 타임리프에서 스프링 시큐리티를 사용하기 위한 의존성 추가
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
// OAuth2 클라이언트를 사용하기 위한 스타터 추가
implementation 'commons-io:commons-io:2.13.0'
implementation 'commons-fileupload:commons-fileupload:1.5'
implementation 'com.amazonaws:aws-java-sdk-s3:1.12.566'
// Object Storage File업로드를 위한 의존성 추가
}
configurations {
all {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
// log4j2를 사용하기 위해 스프링 부트의 로깅 의존성을 제외
}
}
tasks.named('test') {
useJUnitPlatform()
}