From the information provided, it looks like you did not added the JAR into the classpath which contains the class
org.glassfish.jersey.FeaturesAndPropertiesies.
Some class in your code is importing a class (say XYZ.java) in xxxxx.jar that you have added.
And XYZ.java is trying to import another class
org.glassfish.jersey.FeaturesAndPropertiesies which you did not add in the classpath.
You have to find the JAR containing
org.glassfish.jersey.FeaturesAndPropertiesies and add it.
Are you using
maven to build your project. Maven ensures all the dependencies are added to classpath.
Provide the full compilation error which you are getting.
If you are using any
IDE, try cleaning the project and rebuilding. Sometimes this kind of error occurs in Eclipse.