-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
64 lines (52 loc) · 1.46 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
plugins {
id "java"
id "io.spring.dependency-management" version "1.1.3"
}
repositories {
mavenCentral()
}
subprojects {
apply plugin: "java"
apply plugin: "io.spring.dependency-management"
group = "com.vmware"
version = "0.0.1-SNAPSHOT"
java {
sourceCompatibility = 17
targetCompatibility = 17
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
repositories {
mavenCentral()
}
dependencyManagement {
imports {
mavenBom "org.springframework.boot:spring-boot-dependencies:3.1.4"
mavenBom "org.springframework.cloud:spring-cloud-dependencies:2022.0.4"
mavenBom "org.springframework.security:spring-security-bom:6.1.4"
}
dependencies {
dependency "org.apache.commons:commons-lang3:3.13.0"
}
}
dependencies {
compileOnly "org.projectlombok:lombok:1.18.30"
annotationProcessor "org.projectlombok:lombok:1.18.30"
testCompileOnly "org.projectlombok:lombok:1.18.30"
testAnnotationProcessor "org.projectlombok:lombok:1.18.30"
testImplementation 'org.junit.jupiter:junit-jupiter-api'
}
test {
useJUnitPlatform {
includeTags 'unit'
excludeTags 'integration'
}
}
task integrationTest(type: Test) {
useJUnitPlatform {
includeTags 'integration'
excludeTags 'unit'
}
}
}