-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (36 loc) · 1.19 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.0-SNAPSHOT'
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'com.spring'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
}
dependencies {
// spring boot
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// cache
implementation group: 'javax.cache', name: 'cache-api', version: '1.1.1'
implementation group: 'org.ehcache', name: 'ehcache', version: '3.10.8'
// lombok
implementation 'org.projectlombok:lombok:1.18.22'
// redis
implementation ('it.ozimov:embedded-redis:0.7.3') {
// log 중첩 방지
exclude group: "org.slf4j", module: "slf4j-simple"
}
// json
implementation group: 'org.json', name: 'json', version: '20230227'
}
tasks.named('test') {
useJUnitPlatform()
}