Skip to content

Commit

Permalink
Merge pull request #35372 from HerrDerb/reactive-routes-capability
Browse files Browse the repository at this point in the history
Add capability for reactive routes
  • Loading branch information
gsmet authored Aug 19, 2023
2 parents 138f8e7 + 2b6b5d6 commit 7e1a6b3
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 @@ -39,6 +39,8 @@ public interface Capability {

String HAL = QUARKUS_PREFIX + ".hal";

String REACTIVE_ROUTES = QUARKUS_PREFIX + ".reactive-routes";

String REST = QUARKUS_PREFIX + ".rest";
String REST_CLIENT = REST + ".client";
String REST_CLIENT_REACTIVE = REST_CLIENT + ".reactive";
Expand Down
5 changes: 5 additions & 0 deletions extensions/reactive-routes/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-extension-maven-plugin</artifactId>
<configuration>
<capabilities>
<provides>io.quarkus.reactive-routes</provides>
</capabilities>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down

0 comments on commit 7e1a6b3

Please sign in to comment.