-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathbuild.gradle
More file actions
26 lines (23 loc) · 879 Bytes
/
build.gradle
File metadata and controls
26 lines (23 loc) · 879 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
apply plugin: 'org.springframework.boot'
dependencies {
implementation "org.springframework.boot:spring-boot-starter-web"
implementation "org.springframework.boot:spring-boot-starter-thymeleaf"
implementation "org.springframework.boot:spring-boot-starter-actuator"
implementation "io.temporal:temporal-spring-boot-starter:$javaSDKVersion"
testImplementation "org.springframework.boot:spring-boot-starter-test"
runtimeOnly "io.micrometer:micrometer-registry-prometheus"
dependencies {
errorproneJavac('com.google.errorprone:javac:9+181-r4173-1')
if (JavaVersion.current().isJava11Compatible()) {
errorprone('com.google.errorprone:error_prone_core:2.28.0')
} else {
errorprone('com.google.errorprone:error_prone_core:2.28.0')
}
}
}
bootJar {
enabled = false
}
jar {
enabled = true
}