Skip to content

Commit

Permalink
Merge pull request #45284 from basselworkforce/main
Browse files Browse the repository at this point in the history
Add gRPC capability
  • Loading branch information
gsmet authored Dec 26, 2024
2 parents db2a4dc + 8de0220 commit 5290c33
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 5290c33

Please sign in to comment.