forked from pactflow/example-consumer-java-junit
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (27 loc) · 767 Bytes
/
build.gradle
File metadata and controls
32 lines (27 loc) · 767 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
plugins {
id 'org.springframework.boot' version '3.5.12'
id 'io.spring.dependency-management' version '1.1.7'
id 'java'
id "au.com.dius.pact" version "4.6.20"
id "io.freefair.lombok" version "9.2.0"
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation "org.apache.httpcomponents:fluent-hc:4.5.14"
implementation 'com.graphql-java:graphql-java:25.0'
testImplementation 'au.com.dius.pact.consumer:junit5:4.6.20'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
test {
useJUnitPlatform()
}