RE: I am surprised that no one replied to the question I posted yesterday!!

2004-10-28 Thread dsearle
!! wasDSEARLE/R&SA/NZ received

Re: Anthill Pro and Maven Site Publishing

2004-07-29 Thread dsearle
: wasDSEARLE/R&SA/NZ received

Re: Maven Goals within Eclipse Debug environment?

2004-07-05 Thread dsearle
: wasDSEARLE/R&SA/NZ received

Quick Dependency Questions

2004-07-04 Thread dsearle
: wasDSEARLE/R&SA/NZ received

Site Index

2004-06-02 Thread dsearle
: was DSEARLE/R&SA/NZ received

RE: javadoc on generated source directories - valid point!

2004-05-25 Thread dsearle
: was DSEARLE/R&SA/NZ received

RE: javadoc on generated source directories

2004-05-25 Thread dsearle
: was DSEARLE/R&SA/NZ received

RE: Réf. : & in href in xdoc

2004-05-25 Thread dsearle
ment : was DSEARLE/R&SA/NZ received

RE: CVS connection string

2004-05-25 Thread dsearle
: was DSEARLE/R&SA/NZ received

scm:bootstrap-project problem : cannot compile java sources

2004-05-17 Thread dsearle
: was DSEARLE/R&SA/NZ received

RE: RC2 Windows - Maven.bat does not allow spaces in JAVA_HOME

2004-05-11 Thread dsearle
That works fine on my machine. Thank You. Dave Brett Porter <[EMAIL PROTECTED]> wrote on 12/05/2004 16:58:16: > I've committed the following: > -if exist %JAVA_HOME%\nul goto chkMHome > +if exist "%JAVA_HOME%\bin\java.exe" goto chkMHome > > Can you make that change and check that it works un

RE: RC2 Windows - Maven.bat does not allow spaces in JAVA_HOME

2004-05-11 Thread dsearle
Unfortunately the \nul and the quotes appear to be mutually exclusive (at least on Win2000). I have tried: if exist "%JAVA_HOME%"\nul goto chkMHome and if exist "%JAVA_HOME%\nul" goto chkMHome But for both tests get ERROR: JAVA_HOME is set to an invalid directory. Might

RE: RC2 Windows - Maven.bat does not allow spaces in JAVA_HOME

2004-05-11 Thread dsearle
Brett, I do not have CVS access because of our firewall (will be sorted out next week). I have just copy and pasted revision 1.40 from Web Access CVS into WebSphere Studio done the change and created a unified patch. As the paths and revisions were then not right I have updated them by hand (ho

RE: RC2 Windows - Maven.bat does not allow spaces in JAVA_HOME

2004-05-11 Thread dsearle
Brett, I am a newbie at this, but I checked the Web Access CVS before I posted. I navigated to maven/src/bin/maven.bat and the latest revision was 1.40 which still had the fault. If it is already fixed in CVS how do I see the latest revision using the Web Access? Cheers Dave Brett Porter <[E

RC2 Windows - Maven.bat does not allow spaces in JAVA_HOME

2004-05-11 Thread dsearle
Hi, I have found an issue in RC2 in maven.bat on line 56: if exist %JAVA_HOME%\nul goto chkMHome As there is no quotes around it, it fails when there is spaces in the JAVA_HOME value e.g. program files. I got it to work by changing the line to the following: if exist "%JAVA_HOME%" goto chkMHo