-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (31 loc) · 1.44 KB
/
build.gradle
File metadata and controls
39 lines (31 loc) · 1.44 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
plugins {
id 'org.springframework.boot' version '3.5.11'
}
test {
useJUnitPlatform {
includeEngines 'junit-jupiter', 'junit-vintage'
}
}
dependencies {
implementation project(':on-demand:on-demand-spring-boot-starter-web')
implementation project(":gcp:spring-boot-starter-gcp-web");
implementation project(":gcp:request-response-spring-boot-starter-gcp-web");
implementation("org.springframework.boot:spring-boot-starter-security")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-actuator")
testImplementation project(":gcp:spring-boot-starter-gcp-web-test");
testImplementation project(":gcp:request-response-spring-boot-starter-gcp-web-test");
testImplementation("org.springframework.boot:spring-boot-starter-test")
// JUnit Jupiter API and TestEngine implementation
testImplementation("org.junit.jupiter:junit-jupiter-api")
testImplementation("org.junit.jupiter:junit-jupiter-engine")
testImplementation ("com.google.truth:truth:${googleTruthVersion}")
testImplementation ("com.google.truth.extensions:truth-java8-extension:${googleTruthVersion}")
}
bootRun {
// example for running locally with one-line logging
dependencies {
implementation project(":gcp:spring-boot-starter-gcp-web-test");
implementation project(":gcp:request-response-spring-boot-starter-gcp-web-test");
}
}