-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
43 lines (33 loc) · 957 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
34
35
36
37
38
39
40
41
42
43
// 모든 모듈에 적용
allprojects {
apply plugin: 'java'
group = 'kusitms.duduk'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
repositories {
mavenCentral()
}
}
// 서브 모듈에 적용
subprojects {
dependencies {
// Lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// Validation
implementation 'org.springframework.boot:spring-boot-starter-validation'
// devtools
implementation 'org.springframework.boot:spring-boot-devtools'
// Test
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'io.rest-assured:rest-assured:5.3.0'
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation platform('org.junit:junit-bom:5.9.1')
}
}
jar {
enabled = false
}
tasks.named('test') {
useJUnitPlatform()
}