forked from temporalio/samples-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
27 lines (24 loc) · 1.02 KB
/
build.gradle
File metadata and controls
27 lines (24 loc) · 1.02 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
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 "org.springframework.boot:spring-boot-starter-data-jpa"
implementation "org.springframework.kafka:spring-kafka"
// we set this as impl depends to use embedded kafka in samples not just tests
implementation "org.springframework.kafka:spring-kafka-test"
implementation "io.temporal:temporal-spring-boot-starter-alpha:$javaSDKVersion"
runtimeOnly "io.micrometer:micrometer-registry-prometheus"
runtimeOnly "com.h2database:h2"
testImplementation "org.springframework.boot:spring-boot-starter-test"
dependencies {
errorproneJavac('com.google.errorprone:javac:9+181-r4173-1')
errorprone('com.google.errorprone:error_prone_core:2.23.0')
}
}
bootJar {
enabled = false
}
jar {
enabled = true
}