Document: Send and receive multipart/form-data parts in Jakarta Restful Web Services
http://openliberty.io/docs/latest/send-receive-multipart-jaxrs.html
Please describe the problem you are having with the documentation. Is information missing, inaccurate, or unclear? Tell us about the context where you encountered the problem so we can understand how to address it.
I was following the docs to perform multipart config for OpenLiberty and I added the following to my pom.xml and I got the error saying Package io.openliberty.api:io.openliberty.jaxrs30:1.0 does not exist on maven central which indeed is true: (https://mvnrepository.com/artifact/io.openliberty.api/io.openliberty.jaxrs30)[https://mvnrepository.com/artifact/io.openliberty.api/io.openliberty.jaxrs30]. Someone may need to update it to use the correct version (which I'm not sure what is since the packages are listed com.ibm.websphere.jaxrs20.multipart.IAttachment and not com.ibm.websphere.jaxrs30.multipart.IAttachment).
<dependency>
<groupId>io.openliberty.api</groupId>
<artifactId>io.openliberty.jaxrs30</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>