Hi,
Just compiling for the first time, found these missing:
there needs to be a
src/providers/soap/project.properties with the
following two lines:
maven.compile.source=1.4
maven.compile.target=1.5
following is a unified diff format patch for the other
problem, which probably affects more than just 1.5 ;-)
-b
RCS file:
/cvsroot/mule/mule/src/java/org/mule/impl/endpoint/MuleEndpointURI.java,v
retrieving revision 1.7
diff -u -r1.7 MuleEndpointURI.java
---
src/java/org/mule/impl/endpoint/MuleEndpointURI.java 30
Jan 2005 10:59:24 -0000 1.7
+++
src/java/org/mule/impl/endpoint/MuleEndpointURI.java 4
Feb 2005 19:10:34 -0000
@@ -314,7 +314,7 @@
public int compareTo(Object ob)
{
- return uri.compareTo(ob);
+ return uri.compareTo((URI)ob);
}
public String toString()