Skip to content

Commit

Permalink
Add RESTEasy Multipart capability
Browse files Browse the repository at this point in the history
(cherry picked from commit 7abddc1)
  • Loading branch information
mcruzdev authored and gsmet committed Oct 23, 2024
1 parent 60b802a commit 2e764f8
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 @@ -68,6 +68,8 @@ public interface Capability {
String RESTEASY_REACTIVE_JSON_JACKSON = RESTEASY_REACTIVE_JSON + ".jackson";
String RESTEASY_REACTIVE_JSON_JSONB = RESTEASY_REACTIVE_JSON + ".jsonb";

String RESTEASY_MULTIPART = RESTEASY + ".multipart";

String JWT = QUARKUS_PREFIX + ".jwt";

/**
Expand Down
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.resteasy.multipart</provides>
</capabilities>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down

0 comments on commit 2e764f8

Please sign in to comment.