From 4683bad3b29fc9a0bd105eb4112294808dea4d62 Mon Sep 17 00:00:00 2001 From: kdnakt Date: Mon, 6 Jul 2020 10:08:37 +0900 Subject: [PATCH] docs: multipart-provider is not a quarkus extension --- docs/src/main/asciidoc/amazon-s3.adoc | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/amazon-s3.adoc b/docs/src/main/asciidoc/amazon-s3.adoc index dcb0bdd8b56bc..b428f199fda45 100644 --- a/docs/src/main/asciidoc/amazon-s3.adoc +++ b/docs/src/main/asciidoc/amazon-s3.adoc @@ -84,13 +84,23 @@ mvn io.quarkus:quarkus-maven-plugin:{quarkus-version}:create \ -DprojectArtifactId=amazon-s3-quickstart \ -DclassName="org.acme.s3.S3SyncClientResource" \ -Dpath="/s3" \ - -Dextensions="resteasy-jsonb,multipart-provider,amazon-s3" + -Dextensions="resteasy-jsonb,amazon-s3" cd amazon-s3-quickstart ---- This command generates a Maven structure importing the RESTEasy/JAX-RS and S3 Client extensions. After this, the `amazon-s3` extension has been added to your `pom.xml`. +Then, we'll add the following dependency to support `multipart/form-data` requests: + +[source,xml] +---- + + org.jboss.resteasy + resteasy-multipart-provider + +---- + == Setting up the model In this example, we will create an application to manage a list of files. The example application will demonstrate the two programming models supported by the extension.