Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to solve : Unable to Process Jar entry

I am getting this error on console. Can anyone please help me out (I am working on a Spring MVC project with GWT and maven)

SEVERE: Unable to process Jar entry [com/ibm/icu/impl/data/LocaleElements_zh__PINYIN.class] from Jar [jar:file:/C:/Users/ayush/workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp1/wtpwebapps/transconnect/WEB-INF/lib/icu4j-2.6.1.jar!/] for annotations org.apache.tomcat.util.bcel.classfile.Cl

like image 807
Ayush Avatar asked Mar 29 '13 10:03

Ayush


2 Answers

I solved the same problem by simply replacing the icu4j-2.6.1.jar with latest jar

click here to download latest version of jar

Hope it works!

like image 80
Ashish Malhotra Avatar answered Oct 14 '22 17:10

Ashish Malhotra


So, in our case it didn't come from a direct dependency but rather from an indirect injection of the com.google.code.findbugs library.

You will know where it comes from by running mvn dependency:tree for your project (supposing you're using maven)

Solution for us was to use a newer version of the findbugs library (3.0.0) which appeared to be much leaner in terms of dependency content.

like image 3
Sebas Avatar answered Oct 14 '22 17:10

Sebas