-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (30 loc) · 1.15 KB
/
build.gradle
File metadata and controls
37 lines (30 loc) · 1.15 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
plugins {
id 'org.springframework.boot' version '2.7.18'
id 'java'
}
group 'io.durabletask'
version = '0.1.0'
def grpcVersion = '1.78.0'
archivesBaseName = 'durabletask-samples'
bootJar {
mainClass = 'io.durabletask.samples.WebApplication'
}
task runWebAppToDurableTaskSchedulerSample(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
mainClass = 'io.durabletask.samples.WebAppToDurableTaskSchedulerSample'
}
dependencies {
implementation project(':client')
implementation project(':azuremanaged')
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation platform("org.springframework.boot:spring-boot-dependencies:2.7.18")
implementation 'org.springframework.boot:spring-boot-starter'
// https://github.com/grpc/grpc-java#download
implementation "io.grpc:grpc-protobuf:${grpcVersion}"
implementation "io.grpc:grpc-stub:${grpcVersion}"
runtimeOnly "io.grpc:grpc-netty-shaded:${grpcVersion}"
implementation 'com.azure:azure-identity:1.18.1'
// install lombok
annotationProcessor 'org.projectlombok:lombok:1.18.42'
compileOnly 'org.projectlombok:lombok:1.18.42'
}