durabletask-azure-functions
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.microsoft</groupId> <artifactId>durabletask-azure-functions</artifactId> <version>1.5.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>com.microsoft</groupId> <artifactId>durabletask-azure-functions</artifactId> <version>1.5.1</version> <name>Azure Durable Functions SDK for Java</name> <description>This package contains classes, interfaces, and annotations for developing with Azure Durable Functions in Java.</description> <url>https://github.com/microsoft/durabletask-java/tree/main/azurefunctions</url> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>Microsoft</id> <name>Microsoft Corporation</name> </developer> </developers> <scm> <connection>scm:git:https://github.com/microsoft/durabletask-java</connection> <developerConnection>scm:git:git@github.com:microsoft/durabletask-java</developerConnection> <url>https://github.com/microsoft/durabletask-java/tree/main/azurefunctions</url> </scm> <dependencies> <dependency> <groupId>com.microsoft</groupId> <artifactId>durabletask-client</artifactId> <version>1.5.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.microsoft.azure.functions</groupId> <artifactId>azure-functions-java-library</artifactId> <version>3.0.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <version>3.12.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.microsoft.azure.functions</groupId> <artifactId>azure-functions-java-spi</artifactId> <version>1.0.0</version> <scope>provided</scope> </dependency> </dependencies> </project>