We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c98930 commit dbf574bCopy full SHA for dbf574b
1 file changed
samples/build.gradle
@@ -1,18 +1,19 @@
1
plugins {
2
id 'org.springframework.boot' version '2.5.2'
3
id 'java'
4
- id 'application'
5
}
6
7
group 'io.durabletask'
8
version = '0.1.0'
9
def grpcVersion = '1.59.0'
10
archivesBaseName = 'durabletask-samples'
11
12
-application {
+task runWebAppToDurableTaskSchedulerSample(type: JavaExec) {
+ classpath = sourceSets.main.runtimeClasspath
13
mainClass = 'io.durabletask.samples.WebAppToDurableTaskSchedulerSample'
14
15
16
+
17
dependencies {
18
implementation project(':client')
19
implementation project(':azuremanaged')
0 commit comments