ZipException: niepoprawna odległość zbyt duży błąd podczas uruchamiania aplikacji

Mam aplikację GWT, która używa Resteasy jako backend api / service, projekt działa poprawnie, ale kiedy przeniosłem projekt na inny komputer i uruchomiłem go, ten błąd pojawia się podczas wykonywania GWT:

Caused by: java.util.zip.ZipException: invalid distance too far back
    at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:164)
    at java.util.zip.ZipInputStream.read(ZipInputStream.java:193)
    at java.util.jar.JarInputStream.read(JarInputStream.java:207)
    at org.scannotation.archiveiterator.InputStreamWrapper.read(InputStreamWrapper.java:36)
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:235)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:254)
    at java.io.DataInputStream.readInt(DataInputStream.java:387)
    at javassist.bytecode.ClassFile.read(ClassFile.java:731)
    at javassist.bytecode.ClassFile.<init>(ClassFile.java:108)
    at org.scannotation.AnnotationDB.scanClass(AnnotationDB.java:343)
    at org.scannotation.AnnotationDB.scanArchives(AnnotationDB.java:326)
    at org.jboss.resteasy.plugins.server.servlet.ConfigurationBootstrap.createDeployment(ConfigurationBootstrap.java:163)
    ... 24 more

Jaki może być problem?

Czy słoiki GWT lub Resteasy? Co oznacza ZipException? Czy to oznacza zepsutą zależność?

questionAnswers(4)

yourAnswerToTheQuestion