Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions samples/durable-task-sdks/java/async-http-api/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '4.0.5'
id 'org.springframework.boot' version '4.0.6'
id 'java'
id 'application'
}
Expand All @@ -11,7 +11,7 @@ java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
def grpcVersion = '1.80.0'
def grpcVersion = '1.81.0'
base { archivesName = 'durabletask-samples' }

repositories {
Expand All @@ -25,10 +25,10 @@ task runWebApi(type: JavaExec) {
}

dependencies {
implementation("com.microsoft:durabletask-client:1.8.0")
implementation("com.microsoft:durabletask-azuremanaged:1.8.0")
implementation("com.microsoft:durabletask-client:1.9.0")
implementation("com.microsoft:durabletask-azuremanaged:1.9.0")

implementation platform("org.springframework.boot:spring-boot-dependencies:4.0.5")
implementation platform("org.springframework.boot:spring-boot-dependencies:4.0.6")
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-web'

Expand All @@ -40,9 +40,9 @@ dependencies {
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'
implementation 'com.azure:azure-identity:1.18.3'

// install lombok
annotationProcessor 'org.projectlombok:lombok:1.18.44'
compileOnly 'org.projectlombok:lombok:1.18.44'
annotationProcessor 'org.projectlombok:lombok:1.18.46'
compileOnly 'org.projectlombok:lombok:1.18.46'
}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.0-bin.zip
networkTimeout=10000
retries=0
retryBackOffMs=500
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion samples/durable-task-sdks/java/async-http-api/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 10 additions & 21 deletions samples/durable-task-sdks/java/async-http-api/gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
def grpcVersion = '1.80.0'
def grpcVersion = '1.81.0'
base { archivesName = 'durabletask-samples' }

repositories {
Expand All @@ -25,8 +25,8 @@ task runEternalOrchestration(type: JavaExec) {
}

dependencies {
implementation("com.microsoft:durabletask-client:1.8.0")
implementation("com.microsoft:durabletask-azuremanaged:1.8.0")
implementation("com.microsoft:durabletask-client:1.9.0")
implementation("com.microsoft:durabletask-azuremanaged:1.9.0")

// Logging dependencies
implementation 'ch.qos.logback:logback-classic:1.5.32'
Expand All @@ -36,5 +36,5 @@ dependencies {
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'
implementation 'com.azure:azure-identity:1.18.3'
}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.0-bin.zip
networkTimeout=10000
retries=0
retryBackOffMs=500
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 10 additions & 21 deletions samples/durable-task-sdks/java/eternal-orchestrations/gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions samples/durable-task-sdks/java/fan-out-fan-in/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
def grpcVersion = '1.80.0'
def grpcVersion = '1.81.0'
base { archivesName = 'durabletask-samples' }

repositories {
Expand All @@ -25,8 +25,8 @@ task runFanOutFanInPattern(type: JavaExec) {
}

dependencies {
implementation("com.microsoft:durabletask-client:1.8.0")
implementation("com.microsoft:durabletask-azuremanaged:1.8.0")
implementation("com.microsoft:durabletask-client:1.9.0")
implementation("com.microsoft:durabletask-azuremanaged:1.9.0")

// Logging dependencies
implementation 'ch.qos.logback:logback-classic:1.5.32'
Expand All @@ -36,5 +36,5 @@ dependencies {
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'
implementation 'com.azure:azure-identity:1.18.3'
}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.0-bin.zip
networkTimeout=10000
retries=0
retryBackOffMs=500
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion samples/durable-task-sdks/java/fan-out-fan-in/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 10 additions & 21 deletions samples/durable-task-sdks/java/fan-out-fan-in/gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions samples/durable-task-sdks/java/function-chaining/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
def grpcVersion = '1.80.0'
def grpcVersion = '1.81.0'
base { archivesName = 'durabletask-samples' }

repositories {
Expand All @@ -25,8 +25,8 @@ task runChainingPattern(type: JavaExec) {
}

dependencies {
implementation("com.microsoft:durabletask-client:1.8.0")
implementation("com.microsoft:durabletask-azuremanaged:1.8.0")
implementation("com.microsoft:durabletask-client:1.9.0")
implementation("com.microsoft:durabletask-azuremanaged:1.9.0")

// Logging dependencies
implementation 'ch.qos.logback:logback-classic:1.5.32'
Expand All @@ -36,7 +36,7 @@ dependencies {
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'
implementation 'com.azure:azure-identity:1.18.3'
}

task runMinTest(type: JavaExec) {
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.0-bin.zip
networkTimeout=10000
retries=0
retryBackOffMs=500
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion samples/durable-task-sdks/java/function-chaining/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading