Skip to content
Merged
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
2 changes: 1 addition & 1 deletion java/basics/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.5.0"
val restateVersion = "2.6.0"

dependencies {
annotationProcessor("dev.restate:sdk-api-gen:$restateVersion")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.5.0"
val restateVersion = "2.6.0"

dependencies {
// Restate SDK
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.5.0"
val restateVersion = "2.6.0"

dependencies {
// Kafka
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.5.0"
val restateVersion = "2.6.0"

dependencies {
annotationProcessor("dev.restate:sdk-api-gen:$restateVersion")
Expand Down
2 changes: 1 addition & 1 deletion java/end-to-end-applications/workflow-interpreter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<java.version>17</java.version>
<!-- Override Netty version to make sure we bring in the latest with MadeYourReset CVE fix-->
<netty.version>4.1.124.Final</netty.version>
<restate.version>2.5.0</restate.version>
<restate.version>2.6.0</restate.version>
</properties>
<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.5.0"
val restateVersion = "2.6.0"

dependencies {
// Annotation processor
Expand Down
2 changes: 1 addition & 1 deletion java/integrations/java-spring/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.5.0"
val restateVersion = "2.6.0"

dependencies {
implementation("org.springframework.boot:spring-boot-starter")
Expand Down
2 changes: 1 addition & 1 deletion java/patterns-use-cases/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.5.0"
val restateVersion = "2.6.0"

dependencies {
annotationProcessor("dev.restate:sdk-api-gen:$restateVersion")
Expand Down
9 changes: 4 additions & 5 deletions java/templates/java-gradle/AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
> ## Documentation Index
> Fetch the complete documentation index at: https://docs.restate.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Restate Java SDK Rules

## Core Concepts
Expand Down Expand Up @@ -401,8 +405,3 @@ MyObjectClient.fromClient(restateClient, "Mary")
.send()
.myHandler("Hi", opt -> opt.idempotencyKey("abc"));
```


---

> To find navigation and other pages in this documentation, fetch the llms.txt file at: https://docs.restate.dev/llms.txt
9 changes: 5 additions & 4 deletions java/templates/java-gradle/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,20 @@ repositories {
mavenCentral()
}

val restateVersion = "2.5.0"
val restateVersion = "2.6.0"

dependencies {
annotationProcessor("dev.restate:sdk-api-gen:$restateVersion")

// Restate SDK
implementation("dev.restate:sdk-java-http:$restateVersion")

// Logging (optional)
// Logging
implementation("org.apache.logging.log4j:log4j-api:2.24.1")

testImplementation(platform("org.junit:junit-bom:5.11.3"))
testImplementation("org.junit.jupiter:junit-jupiter")
// JUnit (API & test launcher)
testImplementation("org.junit.jupiter:junit-jupiter:5.14.1")
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.14.2")
testImplementation("dev.restate:sdk-testing:$restateVersion")
}

Expand Down
Binary file modified java/templates/java-gradle/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
4 changes: 2 additions & 2 deletions java/templates/java-gradle/gradlew

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

4 changes: 2 additions & 2 deletions java/templates/java-gradle/gradlew.bat

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

9 changes: 4 additions & 5 deletions java/templates/java-maven-quarkus/AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
> ## Documentation Index
> Fetch the complete documentation index at: https://docs.restate.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Restate Java SDK Rules

## Core Concepts
Expand Down Expand Up @@ -401,8 +405,3 @@ MyObjectClient.fromClient(restateClient, "Mary")
.send()
.myHandler("Hi", opt -> opt.idempotencyKey("abc"));
```


---

> To find navigation and other pages in this documentation, fetch the llms.txt file at: https://docs.restate.dev/llms.txt
2 changes: 1 addition & 1 deletion java/templates/java-maven-quarkus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<quarkus.platform.version>3.15.1</quarkus.platform.version>
<skipITs>true</skipITs>
<surefire-plugin.version>3.3.1</surefire-plugin.version>
<restate.version>2.5.0</restate.version>
<restate.version>2.6.0</restate.version>
</properties>

<dependencyManagement>
Expand Down
9 changes: 4 additions & 5 deletions java/templates/java-maven-spring-boot/AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
> ## Documentation Index
> Fetch the complete documentation index at: https://docs.restate.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Restate Java SDK Rules

## Core Concepts
Expand Down Expand Up @@ -401,8 +405,3 @@ MyObjectClient.fromClient(restateClient, "Mary")
.send()
.myHandler("Hi", opt -> opt.idempotencyKey("abc"));
```


---

> To find navigation and other pages in this documentation, fetch the llms.txt file at: https://docs.restate.dev/llms.txt
2 changes: 1 addition & 1 deletion java/templates/java-maven-spring-boot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</scm>
<properties>
<java.version>17</java.version>
<restate.version>2.5.0</restate.version>
<restate.version>2.6.0</restate.version>
</properties>
<dependencies>
<dependency>
Expand Down
9 changes: 4 additions & 5 deletions java/templates/java-maven/AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
> ## Documentation Index
> Fetch the complete documentation index at: https://docs.restate.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Restate Java SDK Rules

## Core Concepts
Expand Down Expand Up @@ -401,8 +405,3 @@ MyObjectClient.fromClient(restateClient, "Mary")
.send()
.myHandler("Hi", opt -> opt.idempotencyKey("abc"));
```


---

> To find navigation and other pages in this documentation, fetch the llms.txt file at: https://docs.restate.dev/llms.txt
2 changes: 1 addition & 1 deletion java/templates/java-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<restate.version>2.5.0</restate.version>
<restate.version>2.6.0</restate.version>
</properties>

<dependencies>
Expand Down
9 changes: 4 additions & 5 deletions java/templates/java-new-api-gradle/AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
> ## Documentation Index
> Fetch the complete documentation index at: https://docs.restate.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Restate Java SDK Rules

## Core Concepts
Expand Down Expand Up @@ -401,8 +405,3 @@ MyObjectClient.fromClient(restateClient, "Mary")
.send()
.myHandler("Hi", opt -> opt.idempotencyKey("abc"));
```


---

> To find navigation and other pages in this documentation, fetch the llms.txt file at: https://docs.restate.dev/llms.txt
9 changes: 5 additions & 4 deletions java/templates/java-new-api-gradle/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,18 @@ repositories {
mavenCentral()
}

val restateVersion = "2.5.0"
val restateVersion = "2.6.0"

dependencies {
// Restate SDK
implementation("dev.restate:sdk-java-http:$restateVersion")

// Logging (optional)
// Logging
implementation("org.apache.logging.log4j:log4j-api:2.24.1")

testImplementation(platform("org.junit:junit-bom:5.11.3"))
testImplementation("org.junit.jupiter:junit-jupiter")
// JUnit (API & test launcher)
testImplementation("org.junit.jupiter:junit-jupiter:5.14.1")
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.14.2")
testImplementation("dev.restate:sdk-testing:$restateVersion")
}

Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
4 changes: 2 additions & 2 deletions java/templates/java-new-api-gradle/gradlew

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

4 changes: 2 additions & 2 deletions java/templates/java-new-api-gradle/gradlew.bat

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

9 changes: 4 additions & 5 deletions java/templates/java-new-api-maven-spring-boot/AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
> ## Documentation Index
> Fetch the complete documentation index at: https://docs.restate.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Restate Java SDK Rules

## Core Concepts
Expand Down Expand Up @@ -401,8 +405,3 @@ MyObjectClient.fromClient(restateClient, "Mary")
.send()
.myHandler("Hi", opt -> opt.idempotencyKey("abc"));
```


---

> To find navigation and other pages in this documentation, fetch the llms.txt file at: https://docs.restate.dev/llms.txt
2 changes: 1 addition & 1 deletion java/templates/java-new-api-maven-spring-boot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</scm>
<properties>
<java.version>17</java.version>
<restate.version>2.5.0</restate.version>
<restate.version>2.6.0</restate.version>
</properties>
<dependencies>
<dependency>
Expand Down
9 changes: 4 additions & 5 deletions java/templates/java-new-api-maven/AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
> ## Documentation Index
> Fetch the complete documentation index at: https://docs.restate.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Restate Java SDK Rules

## Core Concepts
Expand Down Expand Up @@ -401,8 +405,3 @@ MyObjectClient.fromClient(restateClient, "Mary")
.send()
.myHandler("Hi", opt -> opt.idempotencyKey("abc"));
```


---

> To find navigation and other pages in this documentation, fetch the llms.txt file at: https://docs.restate.dev/llms.txt
2 changes: 1 addition & 1 deletion java/templates/java-new-api-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<restate.version>2.5.0</restate.version>
<restate.version>2.6.0</restate.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion java/tutorials/tour-of-orchestration-java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.5.0"
val restateVersion = "2.6.0"

dependencies {
annotationProcessor("dev.restate:sdk-api-gen:$restateVersion")
Expand Down
2 changes: 1 addition & 1 deletion java/tutorials/tour-of-workflows-java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.5.0"
val restateVersion = "2.6.0"

dependencies {
annotationProcessor("dev.restate:sdk-api-gen:$restateVersion")
Expand Down
2 changes: 1 addition & 1 deletion kotlin/basics/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.5.0"
val restateVersion = "2.6.0"

dependencies {
// Annotation processor
Expand Down
Loading
Loading