I'm working on a project in the maven framework and have added a dependency on zookeeper. When
I try to install:
mvn clean install -Dmaven.test.skip=true
...
[INFO] Compilation failure
error: error reading /home/jao/.m2/repository/javax/jms/jms/1.1/jms-1.1.jar; error in
opening zip file
error: error reading /home/jao/.m2/repository/com/sun/jdmk/jmxtools/1.2.1/jmxtools-1.2.1.jar;
error in opening zip file
error: error reading /home/jao/.m2/repository/com/sun/jmx/jmxri/1.2.1/jmxri-1.2.1.jar;
error in opening zip file
The named jar files contain some HTML (!), e.g.
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>301 Moved Permanently</title>
</head><body>
<h1>Moved Permanently</h1>
<p>The document has moved <a href="http://download.java.net/maven/1/javax.jms/jars/jms-1.1.jar">here</a>.</p>
<hr>
<address>Apache Server at maven-repository.dev.java.net Port 443</address>
</body></html>
Has anyone succeeded in following this advice and getting it to work?
I found this maven page: http://maven.apache.org/guides/mini/guide-coping-with-sun-jars.html,
but just getting the jar files from Oracle is a pain.
Any advice on how to get zookeeper and maven to coexist would be welcome. Thanks.
Jack
|