-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathbuild.gradle
More file actions
74 lines (63 loc) · 2.33 KB
/
build.gradle
File metadata and controls
74 lines (63 loc) · 2.33 KB
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
plugins {
id "se.bjurr.gradle.bundle-jar" version "2.0.2"
}
allprojects {
javaExtension {
javaVersion = 17
}
signExtension {
signingKeyEnvOrProp = "OSSRH_GPG_SECRET_KEY"
signingPasswordEnvOrProp = "OSSRH_GPG_SECRET_KEY_PASSWORD"
}
}
project("wiremock-spring-boot", {
dependencies {
// Remove these when wiremock-jetty12:jar uses newer jetty
// https://github.com/wiremock/wiremock/issues/3139
implementation "org.eclipse.jetty:jetty-server:12.1.6"
implementation "org.eclipse.jetty:jetty-proxy:12.1.6"
implementation "org.eclipse.jetty:jetty-alpn-server:12.1.6"
implementation "org.eclipse.jetty:jetty-alpn-java-server:12.1.6"
implementation "org.eclipse.jetty:jetty-alpn-java-client:12.1.6"
implementation "org.eclipse.jetty:jetty-alpn-client:12.1.6"
implementation "org.eclipse.jetty.ee10:jetty-ee10-servlet:12.1.6"
implementation "org.eclipse.jetty.ee10:jetty-ee10-servlets:12.1.6"
implementation "org.eclipse.jetty.ee10:jetty-ee10-webapp:12.1.6"
implementation "org.eclipse.jetty.http2:jetty-http2-server:12.1.6"
api "org.wiremock:wiremock-jetty12:3.13.2"
// Don't want to force these versions on the user
[
"org.springframework.boot:spring-boot-test:4.0.3",
"org.springframework:spring-test:7.0.5",
"org.slf4j:slf4j-api:2.0.17",
"org.junit.jupiter:junit-jupiter-api:6.0.3"
].each {
compileOnly it
testImplementation it
}
}
})
project("wiremock-spring-boot-standalone", {
dependencies {
api(project(":wiremock-spring-boot")) {
exclude group: '*'
}
api "org.wiremock:wiremock-standalone:3.13.2"
}
})
subprojects {
dependencies {
testImplementation "org.springframework.boot:spring-boot-starter-test:4.0.3"
testImplementation "org.springframework.boot:spring-boot-starter-web:4.0.3"
testImplementation "org.assertj:assertj-core:3.27.7"
testImplementation platform("org.junit:junit-bom:6.0.3")
testImplementation "org.junit.platform:junit-platform-suite:6.0.3"
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'org.junit.platform:junit-platform-launcher'
testImplementation "io.rest-assured:rest-assured:6.0.0"
testImplementation "io.rest-assured:rest-assured:6.0.0"
testImplementation "io.cucumber:cucumber-java:7.34.2"
testImplementation "io.cucumber:cucumber-spring:7.34.2"
testImplementation "io.cucumber:cucumber-junit-platform-engine:7.34.2"
}
}