According to the documentation , all I need for a jersey client is jersey-bundle.jar. But simple code that creates a request and sends it throws an exception.
java.lang.ClassNotFoundException: javax.ws.rs.ext.Providers
After adding jsr311-api-1.0.jarto the classpath. I have another exception.
java.lang.NoClassDefFoundError: javax/ws/rs/core/Response$StatusType
Where can I find a complete list of dependencies for Jersey. Which banks should be included. Btw I can not use the user Maven, Ivy, etc.
thank
source
share