quarkus-dapr
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkiverse.dapr</groupId> <artifactId>quarkus-dapr</artifactId> <version>2.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.quarkiverse.dapr</groupId> <artifactId>quarkus-dapr-parent</artifactId> <version>2.1.0</version> </parent> <properties> <testcontainers-dapr.version>0.10.14</testcontainers-dapr.version> </properties> <artifactId>quarkus-dapr</artifactId> <name>Quarkus - Dapr - Runtime</name> <dependencies> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-arc</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-vertx-http</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-grpc</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-rest-jackson</artifactId> </dependency> <dependency> <groupId>io.dapr</groupId> <artifactId>dapr-sdk</artifactId> <exclusions> <exclusion> <artifactId>grpc-netty-shaded</artifactId> <groupId>io.grpc</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.dapr</groupId> <artifactId>dapr-sdk-actors</artifactId> </dependency> <dependency> <groupId>io.diagrid.dapr</groupId> <artifactId>testcontainers-dapr</artifactId> <version>${testcontainers-dapr.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>io.quarkus</groupId> <artifactId>quarkus-extension-maven-plugin</artifactId> <version>${quarkus.version}</version> <executions> <execution> <phase>compile</phase> <goals> <goal>extension-descriptor</goal> </goals> <configuration> <deployment> ${project.groupId}:${project.artifactId}-deployment:${project.version} </deployment> <capabilities> <provides>io.quarkiverse.dapr</provides> </capabilities> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <annotationProcessorPaths> <path> <groupId>io.quarkus</groupId> <artifactId>quarkus-extension-processor</artifactId> <version>${quarkus.version}</version> </path> </annotationProcessorPaths> <compilerArgs> <arg>-AlegacyConfigRoot=true</arg> </compilerArgs> </configuration> </plugin> </plugins> </build> </project>