Doug Douglass wrote on Friday, September 29, 2006 4:00 PM:

> maven 2.x uses/expects M2_HOME env. variable, not MAVEN_HOME (as in
> maven 
> 1.x). This is confirmed by having a look at the comments in
> the mvn.bat file
> in the bin directory. Try defining M2_HOME and see if that makes any
> difference. 
> 
> As for UNC paths, like most pathing issues between windows
> and java, I'd try
> using / instead of \ (i.e., //server/share/....). As a long
> shot you might
> try an URL of the form file://server/share/....
> 
> If that all fails then Wayne is probably correct.

This is not a proper URL for the Windows share!

file://///server/share

which is

file://localhost///server/share

Formally URL is:
<protocol><server><local path>

file:// = protocol
localhost/ = server
//server/share = local path (the Windows share)

- Jörg

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

Reply via email to