-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (34 loc) · 1.12 KB
/
build.gradle
File metadata and controls
41 lines (34 loc) · 1.12 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
40
41
plugins {
id 'java'
id 'application'
}
group 'io.durabletask'
version = '0.1.0'
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
def grpcVersion = '1.78.0'
base { archivesName = 'durabletask-samples' }
repositories {
mavenLocal()
mavenCentral()
}
task runHumanInteraction(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
mainClass = 'io.durabletask.samples.HumanInteraction'
standardInput = System.in
systemProperty 'logback.configurationFile', 'src/main/resources/logback-spring.xml'
}
dependencies {
implementation("com.microsoft:durabletask-client:1.7.0")
implementation("com.microsoft:durabletask-azuremanaged:1.7.0")
// Logging dependencies
implementation 'ch.qos.logback:logback-classic:1.5.32'
implementation 'org.slf4j:slf4j-api:2.0.17'
// 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.2'
}