You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repo contains the Java SDK for the Durable Task Framework as well as classes and annotations to support running [Azure Durable Functions](https://docs.microsoft.com/azure/azure-functions/durable/durable-functions-overview?tabs=java) for Java. With this SDK, you can define, schedule, and manage durable orchestrations using ordinary Java code.
7
7
8
+
## Requirements
9
+
10
+
-**Java 11 or higher** - This SDK requires Java 11 as the minimum version
11
+
-**Gradle** - The project uses [Gradle 7.6.4](gradle/wrapper/gradle-wrapper.properties)
12
+
8
13
### Simple, fault-tolerant sequences
9
14
10
15
```java
@@ -78,8 +83,7 @@ The following packages are produced from this repo.
Copy file name to clipboardExpand all lines: azurefunctions/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ In this article, you follow steps to create and run a simple azure durable funct
6
6
7
7
The following are the requirements for you local environment:
8
8
9
-
- The Java Developer Kit, version 8 or 11, is required. Between the two, JDK 11 is recommended.
9
+
- The Java Developer Kit, version 11 or higher, is required.
10
10
- The `JAVA_HOME` environment variable must be set to the install location of the correct version of the JDK.
11
11
-[Apache Maven](https://maven.apache.org/), version 3.0 or above for azure function app creation, is required for using automatic project creation tools.
12
12
- If Maven isn't your preferred development tool, check out our similar tutorials to [create a function app](https://docs.microsoft.com/en-us/azure/azure-functions/create-first-function-cli-java?tabs=bash%2Cazure-cli%2Cbrowser). This README also contains instructions for [Gradle](https://gradle.org/).
0 commit comments