-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (33 loc) · 996 Bytes
/
build.gradle
File metadata and controls
40 lines (33 loc) · 996 Bytes
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
plugins {
id 'io.spring.dependency-management' version '1.1.5'
id 'java'
}
group = 'io.contract_testing.contractcase.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
repositories {
mavenLocal()
mavenCentral()
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web:2.7.18'
implementation "org.apache.httpcomponents:fluent-hc:4.5.14"
testImplementation 'io.contract-testing.contractcase:contract-case:0.1.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
compileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
testImplementation('org.springframework.boot:spring-boot-starter-test:3.3.0') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
test {
useJUnitPlatform()
testLogging {
showStandardStreams = true
}
}