Hi all,

I tried to buyild maven-proxy from CVS. I get an error on standalone.ProxyRepoServer:

the o.a.m.p.standalone defines two classes Request & Response. As ProxyRepoServer does some * import, Request and Response from AbstractHttpServer are misresolved to o.a.m.p.standalone (must be a.a.m.p.standalone.http).

I join to thi mail a patch for this

Nico.
Index: ProxyRepoServer.java
===================================================================
RCS file: 
/scm/cvspublic/maven-proxy/standalone/src/main/java/org/apache/maven/proxy/standalone/ProxyRepoServer.java,v
retrieving revision 1.4
diff -u -r1.4 ProxyRepoServer.java
--- ProxyRepoServer.java        22 Oct 2003 03:08:08 -0000      1.4
+++ ProxyRepoServer.java        30 Jan 2004 13:12:33 -0000
@@ -2,7 +2,9 @@
 
 import java.io.IOException;
 
-import org.apache.maven.proxy.standalone.http.*;
+import org.apache.maven.proxy.standalone.http.AbstractHttpServer;
+import org.apache.maven.proxy.standalone.http.Request;
+import org.apache.maven.proxy.standalone.http.Response;
 
 /**
  * The ProxyRepoServer implements an HttpServer that serves files from a

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to