Skip to content

Commit

Permalink
Add gRPC capability
Browse files Browse the repository at this point in the history
  • Loading branch information
basselworkforce committed Dec 24, 2024
1 parent 4f943d5 commit 8de0220
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,6 @@ public interface Capability {
String REACTIVE_MYSQL_CLIENT = QUARKUS_PREFIX + ".reactive-mysql-client";
String REACTIVE_MSSQL_CLIENT = QUARKUS_PREFIX + ".reactive-mssql-client";
String REACTIVE_DB2_CLIENT = QUARKUS_PREFIX + ".reactive-db2-client";

String GRPC = QUARKUS_PREFIX + ".grpc";
}
5 changes: 5 additions & 0 deletions extensions/grpc/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,11 @@
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-extension-maven-plugin</artifactId>
<configuration>
<capabilities>
<provides>io.quarkus.grpc</provides>
</capabilities>
</configuration>
<executions>
<execution>
<id>generate-extension-descriptor</id>
Expand Down

0 comments on commit 8de0220

Please sign in to comment.