-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
75 lines (61 loc) · 1.94 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
64
65
66
67
68
69
70
71
72
73
74
75
plugins {
id 'java'
id 'org.springframework.boot' version '3.4.0'
id 'io.spring.dependency-management' version '1.1.6'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
allprojects {
version = '0.0.1-SNAPSHOT'
group = 'app.profanity-filter'
repositories {
mavenCentral()
}
java {
sourceCompatibility = '21'
targetCompatibility = '21'
}
}
subprojects {
apply plugin: 'java-library'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
dependencies {
// default spring boot dependencies
implementation 'org.springframework.boot:spring-boot-starter'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
implementation 'org.springframework.boot:spring-boot-configuration-processor'
// default utilities
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'com.google.guava:guava:31.1-jre'
// default lombok
implementation 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// Cache
implementation 'org.springframework.boot:spring-boot-starter-cache'
implementation "com.github.ben-manes.caffeine:caffeine:3.1.8"
}
bootJar.enabled = false
jar.enabled = true
tasks.named('test') { useJUnitPlatform() }
test {
outputs.upToDateWhen { false }
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
showStandardStreams = true
exceptionFormat = 'full'
showExceptions = true
showCauses = true
showStackTraces = true
}
}
}
// Root 프로젝트의 test task를 수정
test.dependsOn subprojects.test
bootJar.enabled = false
jar.enabled = true