-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
28 lines (21 loc) · 977 Bytes
/
build.gradle
File metadata and controls
28 lines (21 loc) · 977 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
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")
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}")
}