-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (25 loc) · 883 Bytes
/
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
plugins {
id('java')
id('org.springframework.boot') version "2.6.7"
id('io.spring.dependency-management') version "1.0.11.RELEASE"
}
group 'pe.redis'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation('org.springframework.boot:spring-boot-starter-web')
implementation('org.springframework.boot:spring-boot-starter-data-redis')
implementation('org.projectlombok:lombok')
//annotationProcessor('org.springframework.boot:spring-boot-configuration-processor')
annotationProcessor('org.projectlombok:lombok')
compileOnly('org.projectlombok:lombok')
// test
testImplementation('org.springframework.boot:spring-boot-starter-test')
testImplementation('org.junit.jupiter:junit-jupiter-api:5.8.1')
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.8.1')
}
test {
useJUnitPlatform()
}