-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
63 lines (52 loc) · 2.73 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.14'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
}
group = 'com.clab'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-actuator' // 모니터링
implementation 'org.springframework.boot:spring-boot-starter-web' // 웹 MVC
implementation 'org.springframework.boot:spring-boot-starter-validation' // 유효성 검사
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' // 템플릿 엔진
developmentOnly 'org.springframework.boot:spring-boot-devtools' // 개발 도구
compileOnly 'org.projectlombok:lombok' // 롬복
annotationProcessor 'org.projectlombok:lombok' // 롬복
implementation 'javax.xml.bind:jaxb-api:2.3.1' // XML 바인딩
implementation 'com.google.code.gson:gson:2.10.1' // JSON 라이브러리
implementation 'com.googlecode.json-simple:json-simple:1.1.1' // JSON 역직렬화
implementation 'org.springframework.boot:spring-boot-starter-quartz:2.7.5' // Quartz 스케줄러
implementation 'org.apache.httpcomponents:httpclient:4.5.13' // HttpClient
implementation 'org.springframework.boot:spring-boot-starter-mail' // Email
implementation group: 'commons-io', name: 'commons-io', version: '2.12.0' // 파일 I/O
implementation 'com.google.guava:guava:31.1-jre' // Google Guava
implementation 'net.gpedro.integrations.slack:slack-webhook:1.4.0' // Slack Webhook
// Swagger
implementation 'org.springdoc:springdoc-openapi-ui:1.6.12'
// DB
runtimeOnly 'org.mariadb.jdbc:mariadb-java-client' // MariaDB JDBC 드라이버
implementation 'org.springframework.boot:spring-boot-starter-data-jpa' // Spring Data JPA
implementation 'org.hibernate.validator:hibernate-validator:8.0.0.Final' // Bean Validation
implementation 'javax.validation:validation-api:2.0.1.Final' // Bean Validation
implementation 'jakarta.validation:jakarta.validation-api:3.0.2'
// OAuth
implementation 'org.springframework.boot:spring-boot-starter-security' // Spring Security
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client' // OAuth 2.0 Client
implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server' // OAuth 2.0 Resource Server
implementation 'io.jsonwebtoken:jjwt-api:0.11.5' // JWT 라이브러리
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5' // JWT 구현체
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5' // JWT Jackson 모듈
// Test
testImplementation 'org.springframework.boot:spring-boot-starter-test' // Spring Boot Test
testImplementation 'org.springframework.security:spring-security-test' // Spring Security Test
}
tasks.named('test') {
useJUnitPlatform()
}