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

2004-05-11 Thread Brett Porter
Fixed in CVS.

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, 12 May 2004 9:23 AM
 To: [EMAIL PROTECTED]
 Subject: RC2 Windows - Maven.bat does not allow spaces in JAVA_HOME
 
 
 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 chkMHome
 
 I am not sure what the \nul was for but it works fine for me 
 without it on 
 Windows 2000.
 
 Cheers Dave
 
 
 
  
 **
 CAUTION - This message is intended for the addressee named 
 above. It may contain privileged or confidential information. 
 If you are not the 
 intended recipient of this message you must not use, copy, distribute 
 or disclose it to anyone.
 **
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


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 [EMAIL PROTECTED] wrote on 12/05/2004 11:24:31:

 Fixed in CVS.

  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, 12 May 2004 9:23 AM
  To: [EMAIL PROTECTED]
  Subject: RC2 Windows - Maven.bat does not allow spaces in JAVA_HOME
 
 
  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 chkMHome
 
  I am not sure what the \nul was for but it works fine for me
  without it on
  Windows 2000.
 
  Cheers Dave



 
**
CAUTION - This message is intended for the addressee named above. It
may contain privileged or confidential information. If you are not the 
intended recipient of this message you must not use, copy, distribute 
or disclose it to anyone.
**


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



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

2004-05-11 Thread Brett Porter
You're right. The fix was for JAVA_HOME.

Can you submit a tested patch for JAVA_HOME?

- Brett

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, 12 May 2004 9:37 AM
 To: Maven Users List
 Subject: RE: RC2 Windows - Maven.bat does not allow spaces in 
 JAVA_HOME
 
 
 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 [EMAIL PROTECTED] wrote on 12/05/2004 11:24:31:
 
  Fixed in CVS.
 
   -Original Message-
   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
   Sent: Wednesday, 12 May 2004 9:23 AM
   To: [EMAIL PROTECTED]
   Subject: RC2 Windows - Maven.bat does not allow spaces in 
 JAVA_HOME
  
  
   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 chkMHome
  
   I am not sure what the \nul was for but it works fine for 
 me without 
   it on Windows 2000.
  
   Cheers Dave
 
 
 
  
 **
 CAUTION - This message is intended for the addressee named 
 above. It may contain privileged or confidential information. 
 If you are not the 
 intended recipient of this message you must not use, copy, distribute 
 or disclose it to anyone.
 **
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


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 (hopefully 
its right but I am not experienced with patches).

I have tested the updated batch file on Windows 2000 service pack 4.

Cheers Dave

Index: maven.bat
===
RCS file: /home/cvspublic/maven/src/bin/maven.bat,v
retrieving revision 1.40
diff -u -r1.40 maven.bat
--- maven.bat   2004/03/23 02:18:17 1.40
+++ maven.bat   2004/05/12 14:45:36 
@@ -53,7 +53,7 @@
 goto end
 
 :OkJHome
-if exist %JAVA_HOME%\nul goto chkMHome
+if exist %JAVA_HOME% goto chkMHome
 
 echo.
 echo ERROR: JAVA_HOME is set to an invalid directory.



Brett Porter [EMAIL PROTECTED] wrote on 12/05/2004 12:12:19:

 You're right. The fix was for JAVA_HOME.

 Can you submit a tested patch for JAVA_HOME?

 - Brett

  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, 12 May 2004 9:37 AM
  To: Maven Users List
  Subject: RE: RC2 Windows - Maven.bat does not allow spaces in
  JAVA_HOME
 
 
  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 [EMAIL PROTECTED] wrote on 12/05/2004 11:24:31:
 
   Fixed in CVS.
 
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Wednesday, 12 May 2004 9:23 AM
To: [EMAIL PROTECTED]
Subject: RC2 Windows - Maven.bat does not allow spaces in
  JAVA_HOME
   
   
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 chkMHome
   
I am not sure what the \nul was for but it works fine for
  me without
it on Windows 2000.
   
Cheers Dave



 
**
CAUTION - This message is intended for the addressee named above. It
may contain privileged or confidential information. If you are not the 
intended recipient of this message you must not use, copy, distribute 
or disclose it to anyone.
**


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



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

2004-05-11 Thread Brett Porter
I think the \nul is still necessary for Windows 98.

If this is the only location in the file, I can test this quickly on my work
machine.

Thanks,
Brett

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, 12 May 2004 1:14 PM
 To: Maven Users List
 Subject: RE: RC2 Windows - Maven.bat does not allow spaces in 
 JAVA_HOME
 
 
 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 
 (hopefully 
 its right but I am not experienced with patches).
 
 I have tested the updated batch file on Windows 2000 service pack 4.
 
 Cheers Dave
 
 Index: maven.bat 
 ===
 RCS file: /home/cvspublic/maven/src/bin/maven.bat,v
 retrieving revision 1.40
 diff -u -r1.40 maven.bat
 --- maven.bat   2004/03/23 02:18:17 1.40
 +++ maven.bat   2004/05/12 14:45:36 
 @@ -53,7 +53,7 @@
  goto end
  
  :OkJHome
 -if exist %JAVA_HOME%\nul goto chkMHome
 +if exist %JAVA_HOME% goto chkMHome
  
  echo.
  echo ERROR: JAVA_HOME is set to an invalid directory.
 
 
 
 Brett Porter [EMAIL PROTECTED] wrote on 12/05/2004 12:12:19:
 
  You're right. The fix was for JAVA_HOME.
 
  Can you submit a tested patch for JAVA_HOME?
 
  - Brett
 
   -Original Message-
   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
   Sent: Wednesday, 12 May 2004 9:37 AM
   To: Maven Users List
   Subject: RE: RC2 Windows - Maven.bat does not allow spaces in 
   JAVA_HOME
  
  
   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 [EMAIL PROTECTED] wrote on 12/05/2004 
   11:24:31:
  
Fixed in CVS.
  
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, 12 May 2004 9:23 AM
 To: [EMAIL PROTECTED]
 Subject: RC2 Windows - Maven.bat does not allow spaces in
   JAVA_HOME


 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 chkMHome

 I am not sure what the \nul was for but it works fine for
   me without
 it on Windows 2000.

 Cheers Dave
 
 
 
  
 **
 CAUTION - This message is intended for the addressee named 
 above. It may contain privileged or confidential information. 
 If you are not the 
 intended recipient of this message you must not use, copy, distribute 
 or disclose it to anyone.
 **
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


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 have to have something like:

if %OS%==Windows_NT if exist %JAVA_HOME% goto chkMHome
if NOT %OS%==Windows_NT if exist %JAVA_HOME%\nul goto chkMHome

Will need to check this works OK on win98 however. 
By the way, this is the only place that the \nul is used.

Cheers Dave


Brett Porter [EMAIL PROTECTED] wrote on 12/05/2004 15:16:38:

 I think the \nul is still necessary for Windows 98.

 If this is the only location in the file, I can test this quickly on my 
work
 machine.

 Thanks,
 Brett

  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, 12 May 2004 1:14 PM
  To: Maven Users List
  Subject: RE: RC2 Windows - Maven.bat does not allow spaces in
  JAVA_HOME
 
 
  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
  (hopefully
  its right but I am not experienced with patches).
 
  I have tested the updated batch file on Windows 2000 service pack 4.
 
  Cheers Dave
 
  Index: maven.bat
  ===
  RCS file: /home/cvspublic/maven/src/bin/maven.bat,v
  retrieving revision 1.40
  diff -u -r1.40 maven.bat
  --- maven.bat   2004/03/23 02:18:17 1.40
  +++ maven.bat   2004/05/12 14:45:36
  @@ -53,7 +53,7 @@
   goto end
 
   :OkJHome
  -if exist %JAVA_HOME%\nul goto chkMHome
  +if exist %JAVA_HOME% goto chkMHome
 
   echo.
   echo ERROR: JAVA_HOME is set to an invalid directory.
 
 
 
  Brett Porter [EMAIL PROTECTED] wrote on 12/05/2004 12:12:19:
 
   You're right. The fix was for JAVA_HOME.
 
   Can you submit a tested patch for JAVA_HOME?
 
   - Brett
 
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Wednesday, 12 May 2004 9:37 AM
To: Maven Users List
Subject: RE: RC2 Windows - Maven.bat does not allow spaces in
JAVA_HOME
   
   
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 [EMAIL PROTECTED] wrote on 12/05/2004
11:24:31:
   
 Fixed in CVS.
   
  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, 12 May 2004 9:23 AM
  To: [EMAIL PROTECTED]
  Subject: RC2 Windows - Maven.bat does not allow spaces in
JAVA_HOME
 
 
  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 chkMHome
 
  I am not sure what the \nul was for but it works fine for
me without
  it on Windows 2000.
 
  Cheers Dave



 
**
CAUTION - This message is intended for the addressee named above. It
may contain privileged or confidential information. If you are not the 
intended recipient of this message you must not use, copy, distribute 
or disclose it to anyone.
**


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



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

2004-05-11 Thread Brett Porter
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 under your installation
with spaces?

Thanks,
Brett

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, 12 May 2004 1:46 PM
 To: Maven Users List
 Subject: RE: RC2 Windows - Maven.bat does not allow spaces in 
 JAVA_HOME
 
 
 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 have to have something like:
 
 if %OS%==Windows_NT if exist %JAVA_HOME% goto chkMHome
 if NOT %OS%==Windows_NT if exist %JAVA_HOME%\nul goto chkMHome
 
 Will need to check this works OK on win98 however. 
 By the way, this is the only place that the \nul is used.
 
 Cheers Dave
 
 
 Brett Porter [EMAIL PROTECTED] wrote on 12/05/2004 15:16:38:
 
  I think the \nul is still necessary for Windows 98.
 
  If this is the only location in the file, I can test this 
 quickly on 
  my
 work
  machine.
 
  Thanks,
  Brett
 
   -Original Message-
   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
   Sent: Wednesday, 12 May 2004 1:14 PM
   To: Maven Users List
   Subject: RE: RC2 Windows - Maven.bat does not allow spaces in 
   JAVA_HOME
  
  
   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
   (hopefully
   its right but I am not experienced with patches).
  
   I have tested the updated batch file on Windows 2000 
 service pack 4.
  
   Cheers Dave
  
   Index: maven.bat 
   
 ===
   RCS file: /home/cvspublic/maven/src/bin/maven.bat,v
   retrieving revision 1.40
   diff -u -r1.40 maven.bat
   --- maven.bat   2004/03/23 02:18:17 1.40
   +++ maven.bat   2004/05/12 14:45:36
   @@ -53,7 +53,7 @@
goto end
  
:OkJHome
   -if exist %JAVA_HOME%\nul goto chkMHome
   +if exist %JAVA_HOME% goto chkMHome
  
echo.
echo ERROR: JAVA_HOME is set to an invalid directory.
  
  
  
   Brett Porter [EMAIL PROTECTED] wrote on 12/05/2004 
   12:12:19:
  
You're right. The fix was for JAVA_HOME.
  
Can you submit a tested patch for JAVA_HOME?
  
- Brett
  
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, 12 May 2004 9:37 AM
 To: Maven Users List
 Subject: RE: RC2 Windows - Maven.bat does not allow spaces in 
 JAVA_HOME


 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 [EMAIL PROTECTED] wrote on 12/05/2004
 11:24:31:

  Fixed in CVS.

   -Original Message-
   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
   Sent: Wednesday, 12 May 2004 9:23 AM
   To: [EMAIL PROTECTED]
   Subject: RC2 Windows - Maven.bat does not allow spaces in
 JAVA_HOME
  
  
   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 chkMHome
  
   I am not sure what the \nul was for but it works fine for
 me without
   it on Windows 2000.
  
   Cheers Dave
 
 
 
  
 **
 CAUTION - This message is intended for the addressee named 
 above. It may contain privileged or confidential information. 
 If you are not the 
 intended recipient of this message you must not use, copy, distribute 
 or disclose it to anyone.
 **
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


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 under your installation
 with spaces?

 Thanks,
 Brett

  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, 12 May 2004 1:46 PM
  To: Maven Users List
  Subject: RE: RC2 Windows - Maven.bat does not allow spaces in
  JAVA_HOME
 
 
  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 have to have something like:
 
  if %OS%==Windows_NT if exist %JAVA_HOME% goto chkMHome
  if NOT %OS%==Windows_NT if exist %JAVA_HOME%\nul goto chkMHome
 
  Will need to check this works OK on win98 however.
  By the way, this is the only place that the \nul is used.
 
  Cheers Dave
 
 
  Brett Porter [EMAIL PROTECTED] wrote on 12/05/2004 15:16:38:
 
   I think the \nul is still necessary for Windows 98.
 
   If this is the only location in the file, I can test this
  quickly on
   my
  work
   machine.
 
   Thanks,
   Brett
 
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Wednesday, 12 May 2004 1:14 PM
To: Maven Users List
Subject: RE: RC2 Windows - Maven.bat does not allow spaces in
JAVA_HOME
   
   
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
(hopefully
its right but I am not experienced with patches).
   
I have tested the updated batch file on Windows 2000
  service pack 4.
   
Cheers Dave
   
Index: maven.bat
   
  ===
RCS file: /home/cvspublic/maven/src/bin/maven.bat,v
retrieving revision 1.40
diff -u -r1.40 maven.bat
--- maven.bat   2004/03/23 02:18:17 1.40
+++ maven.bat   2004/05/12 14:45:36
@@ -53,7 +53,7 @@
 goto end
   
 :OkJHome
-if exist %JAVA_HOME%\nul goto chkMHome
+if exist %JAVA_HOME% goto chkMHome
   
 echo.
 echo ERROR: JAVA_HOME is set to an invalid directory.
   
   
   
Brett Porter [EMAIL PROTECTED] wrote on 12/05/2004
12:12:19:
   
 You're right. The fix was for JAVA_HOME.
   
 Can you submit a tested patch for JAVA_HOME?
   
 - Brett
   
  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, 12 May 2004 9:37 AM
  To: Maven Users List
  Subject: RE: RC2 Windows - Maven.bat does not allow spaces in
  JAVA_HOME
 
 
  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 [EMAIL PROTECTED] wrote on 12/05/2004
  11:24:31:
 
   Fixed in CVS.
 
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Wednesday, 12 May 2004 9:23 AM
To: [EMAIL PROTECTED]
Subject: RC2 Windows - Maven.bat does not allow spaces in
  JAVA_HOME
   
   
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 chkMHome
   
I am not sure what the \nul was for but it works fine for
  me without
it on Windows 2000.
   
Cheers Dave



 
**
CAUTION - This message is intended for the addressee named above. It
may contain privileged or confidential information. If you are not the 
intended recipient of this message you must not use, copy, distribute 
or disclose it to anyone.
**


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



RE: RC2 Deprecation entries during build

2004-03-30 Thread Brett Porter
They'll be corrected by 1.0 final. Using the root classloader is strongly
discouraged.

They are harmless though (which is why they are only output at debug level)

- Brett


 -Original Message-
 From: Joshua Sherwood [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, 31 March 2004 2:44 AM
 To: [EMAIL PROTECTED]
 Subject: RC2 Deprecation entries during build
 
 
 I just started working with RC2 (was using a cvs build 
 previously), and 
 I notice the following deprecations (running maven with -X), which I 
 didn't see with earlier releases. I realize this isn't a big 
 issue, but 
 if these areas are being updated, this should be looked at.
 
 Processing dependencies for project Maven Site Plugin; classloader 
 [ForeheadClassLoader: name=root.maven]
 DEPRECATION: commons-lang:commons-lang in project 
 maven-site-plugin:maven-site-plugin forces the classloader 
 'root.maven'
  This behaviour is deprecated. Please refer to 
 the FAQ poking dependency 
 /home/xxx/.maven/repository/commons-lang/jars/commons-lang-1.0.1.jar 
 into classloader root.maven
 DEPRECATION: commons-net:commons-net in project 
 maven-site-plugin:maven-site-plugin forces the classloader 'root'
  This behaviour is deprecated. Please refer to 
 the FAQ poking dependency 
 /home/xxx/.maven/repository/commons-net/jars/commons-net-1.1.0
 .jar into 
 classloader root
 attaining goal build:start
 attaining goal site:deploy
 Using userBuildPropertiesFile: /home/xxx/build.properties
 Using projectPropertiesFile: 
 /home/xxx/.maven/plugins/maven-pom-plugin-1.3/project.properties
 Using projectBuildPropertiesFile: 
 /home/xxx/.maven/plugins/maven-pom-plugin-1.3/build.properties
 running script 
 /home/xxx/.maven/plugins/maven-pom-plugin-1.3/plugin.jelly
 Processing dependencies for project Maven POM Plugin; classloader 
 [ForeheadClassLoader: name=root.maven]
 DEPRECATION: isorelax:isorelax in project 
 maven-pom-plugin:maven-pom-plugin forces the classloader 'root'
  This behaviour is deprecated. Please refer to 
 the FAQ poking dependency 
 /home/xxx/.maven/repository/isorelax/jars/isorelax-20030108.jar into 
 classloader root
 DEPRECATION: thaiopensource:jing in project 
 maven-pom-plugin:maven-pom-plugin forces the classloader 'root'
  This behaviour is deprecated. Please refer to 
 the FAQ poking dependency 
 /home/xxx/.maven/repository/thaiopensource/jars/jing-20030619.
 jar into 
 classloader root
 DEPRECATION: xerces:xerces in project 
 maven-pom-plugin:maven-pom-plugin 
 forces the classloader 'root'
  This behaviour is deprecated. Please refer to 
 the FAQ poking dependency 
 /home/xxx/.maven/repository/xerces/jars/xerces-2.4.0.jar into 
 classloader root
 Using userBuildPropertiesFile: /home/xxx/build.properties
 Using projectPropertiesFile: 
 /home/xxx/.maven/plugins/maven-artifact-plugin-1.1/project.properties
 Using projectBuildPropertiesFile: 
 /home/xxx/.maven/plugins/maven-artifact-plugin-1.1/build.properties
 running script 
 /home/xxx/.maven/plugins/maven-artifact-plugin-1.1/plugin.jelly
 Processing dependencies for project Maven Artifact Plug-in; 
 classloader 
 [ForeheadClassLoader: name=root.maven]
 Using userBuildPropertiesFile: /home/xxx/build.properties
 Using projectPropertiesFile: 
 /home/xxx/.maven/plugins/maven-xdoc-plugin-1.6/project.properties
 Using projectBuildPropertiesFile: 
 /home/xxx/.maven/plugins/maven-xdoc-plugin-1.6/build.properties
 running script 
 /home/xxx/.maven/plugins/maven-xdoc-plugin-1.6/plugin.jelly
 Processing dependencies for project Maven XDoc Plug-in; classloader 
 [ForeheadClassLoader: name=root.maven]
 Using userBuildPropertiesFile: /home/xxx/build.properties
 Using projectPropertiesFile: 
 /home/xxx/.maven/plugins/maven-license-plugin-1.1/project.properties
 Using projectBuildPropertiesFile: 
 /home/xxx/.maven/plugins/maven-license-plugin-1.1/build.properties
 running script 
 /home/xxx/.maven/plugins/maven-license-plugin-1.1/plugin.jelly
 Processing dependencies for project Maven License Plug-in; 
 classloader 
 [ForeheadClassLoader: name=root.maven]
 Using userBuildPropertiesFile: /home/xxx/build.properties
 Using projectPropertiesFile: 
 /home/xxx/.maven/plugins/maven-faq-plugin-1.2/project.properties
 Using projectBuildPropertiesFile: 
 /home/xxx/.maven/plugins/maven-faq-plugin-1.2/build.properties
 running script 
 /home/xxx/.maven/plugins/maven-faq-plugin-1.2/plugin.jelly
 Processing dependencies for project Maven FAQ Plug-in; classloader 
 [ForeheadClassLoader: name=root.maven]
 DEPRECATION: commons-jelly:commons-jelly-tags-xml in project 
 maven-faq-plugin:maven-faq-plugin forces the classloader 'root.maven'
  This behaviour is deprecated. Please refer to 
 the FAQ poking dependency 
 /home/xxx/.maven/repository/commons-jelly/jars/commons-jelly-t
 ags-xml-20030211.142705.jar 
 into classloader root.maven
 Using userBuildPropertiesFile: /home/xxx/build.properties
 Using projectPropertiesFile: 
 

RE: RC2 Site generation failed

2004-03-26 Thread Mark Jones

Brett,

Thanks very much, that fixed it.

Mark.




   

  Brett Porter 

  [EMAIL PROTECTED]To:   'Maven Users List' [EMAIL 
PROTECTED] 
  k.com.aucc: 

   Subject:  RE: RC2 Site generation 
failed
  25/03/2004 22:07 

  Please respond to

  Maven Users 

  List

   

   





Sounds like the file:/ vs file:// bug. I think it is fixed in the xdoc
plugin but didn't make RC2.

See here for a fix while waiting for the next xdoc plugin release:
http://jira.codehaus.org/secure/ViewIssue.jspa?key=MPXDOC-84

 -Original Message-
 From: Konstantin Shaposhnikov [mailto:[EMAIL PROTECTED]
 Sent: Friday, 26 March 2004 9:04 AM
 To: Maven Users List
 Subject: Re: RC2 Site generation failed


 I have the same problem.

 It appears only on my linux box and related to the linkcheck
 plugin, because when I turn it off everything is all right.

 May be this can help.

 Best regards,
 Konstantin

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


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







--

This e-mail may contain confidential and/or privileged information. If you are not the 
intended recipient (or have received this e-mail in error) please notify the sender 
immediately and destroy this e-mail. Any unauthorized copying, disclosure or 
distribution of the material in this e-mail is strictly forbidden.



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



Re: RC2 Site generation failed

2004-03-25 Thread Emmanuel Venisse
The correct command is maven genapp

In the genapp wizard:
You can use the default value or change it.
Change the package name

run maven site:generate
= generation is ok for me.

Emmanuel

- Original Message - 
From: Mark Jones [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, March 25, 2004 6:18 PM
Subject: RC2 Site generation failed



 Hello,

 I am very new to maven and hope I am sending this request to the right
place.

 I created a Hello World type project using Maven RC2 but am experiencing
problems trying to generate the site;

 I ran the following command line on linux;

 $maven -D package=helloworld genapp

 This successfully built a skeleton project.  However, when I ran the
following;

 $maven site:generate

 I got the following error message (I've attached the entire output);

 BUILD FAILED
 File..
file:/home/jonesma/.maven/plugins/maven-xdoc-plugin-1.6/plugin.jelly
 Element... j:include
 Line.. 345
 Column 54
 null:-1:-1: null Could not parse Jelly script
 Total time: 2 minutes 8 seconds
 Finished at: Thu Mar 25 15:32:25 GMT 2004


 I ran the exact same commands yesterday with RC1 and it worked perfectly.

 I would be very grateful for any help.


 (See attached file: Maven_Site_Gen_Failure)





 --

 This e-mail may contain confidential and/or privileged information. If you
are not the intended recipient (or have received this e-mail in error)
please notify the sender immediately and destroy this e-mail. Any
unauthorized copying, disclosure or distribution of the material in this
e-mail is strictly forbidden.








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


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



Re: RC2 Site generation failed

2004-03-25 Thread Mark Jones

Emmanuel,

Thanks very much for getting back.  Unfortunately, it still isn't woking.  I 
downloaded the source again, delete ~/.maven, and ran the following;

$MAVEN_HOME/bin/install_repo.sh ~/.maven/repository
maven genapp
  Project template = default
  App Id = HelloWorld
  App Name = Hello World
  Package = helloworld
maven site:generate

but got the following failure;

Validating project-info.html
Validating team-list.html
[echo] Generating /home/jonesma/Projects/HelloWorld/target/docs/linkcheck.html 
from /home/jonesma/Projects/HelloWorld/target/linkcheck/docs/linkcheck.xml

BUILD FAILED
File.. /home/jonesma/.maven/plugins/maven-xdoc-plugin-1.6/plugin.jelly
Element... j:include
Line.. 345
Column 54
null:-1:-1: null Could not parse Jelly script
Total time: 1 minutes 18 seconds
Finished at: Thu Mar 25 18:09:41 GMT 2004

Could it be something in the project.xml?



   

  Emmanuel

  Venisse To:   Maven Users List [EMAIL 
PROTECTED]   
  [EMAIL PROTECTED]cc:
 
  .netSubject:  Re: RC2 Site generation 
failed
   

  25/03/2004 17:50 

  Please respond to

  Maven Users 

  List

   

   





The correct command is maven genapp

In the genapp wizard:
You can use the default value or change it.
Change the package name

run maven site:generate
= generation is ok for me.

Emmanuel

- Original Message -
From: Mark Jones [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, March 25, 2004 6:18 PM
Subject: RC2 Site generation failed



 Hello,

 I am very new to maven and hope I am sending this request to the right
place.

 I created a Hello World type project using Maven RC2 but am experiencing
problems trying to generate the site;

 I ran the following command line on linux;

 $maven -D package=helloworld genapp

 This successfully built a skeleton project.  However, when I ran the
following;

 $maven site:generate

 I got the following error message (I've attached the entire output);

 BUILD FAILED
 File..
file:/home/jonesma/.maven/plugins/maven-xdoc-plugin-1.6/plugin.jelly
 Element... j:include
 Line.. 345
 Column 54
 null:-1:-1: null Could not parse Jelly script
 Total time: 2 minutes 8 seconds
 Finished at: Thu Mar 25 15:32:25 GMT 2004


 I ran the exact same commands yesterday with RC1 and it worked perfectly.

 I would be very grateful for any help.


 (See attached file: Maven_Site_Gen_Failure)





 --

 This e-mail may contain confidential and/or privileged information. If you
are not the intended recipient (or have received this e-mail in error)
please notify the sender immediately and destroy this e-mail. Any
unauthorized copying, disclosure or distribution of the material in this
e-mail is strictly forbidden.








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


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






--

This e-mail may contain confidential and/or privileged information. If you are not the 
intended recipient (or have received this e-mail in error) please notify the sender 
immediately and destroy this e-mail. Any unauthorized copying, disclosure or 
distribution of the material in this e-mail is strictly forbidden.



-
To unsubscribe, e-mail

Re: RC2 Site generation failed

2004-03-25 Thread Emmanuel Venisse
Could you run maven -X -e site:generate for obtain more information?

Emmanuel

- Original Message - 
From: Mark Jones [EMAIL PROTECTED]
To: Maven Users List [EMAIL PROTECTED]
Sent: Thursday, March 25, 2004 7:26 PM
Subject: Re: RC2 Site generation failed



 Emmanuel,

 Thanks very much for getting back.  Unfortunately, it still isn't woking.
I downloaded the source again, delete ~/.maven, and ran the following;

 $MAVEN_HOME/bin/install_repo.sh ~/.maven/repository
 maven genapp
   Project template = default
   App Id = HelloWorld
   App Name = Hello World
   Package = helloworld
 maven site:generate

 but got the following failure;

 Validating project-info.html
 Validating team-list.html
 [echo] Generating
/home/jonesma/Projects/HelloWorld/target/docs/linkcheck.html from
/home/jonesma/Projects/HelloWorld/target/linkcheck/docs/linkcheck.xml

 BUILD FAILED
 File..
/home/jonesma/.maven/plugins/maven-xdoc-plugin-1.6/plugin.jelly
 Element... j:include
 Line.. 345
 Column 54
 null:-1:-1: null Could not parse Jelly script
 Total time: 1 minutes 18 seconds
 Finished at: Thu Mar 25 18:09:41 GMT 2004

 Could it be something in the project.xml?




   Emmanuel
   Venisse To:   Maven Users
List [EMAIL PROTECTED]
   [EMAIL PROTECTED]cc:
   .netSubject:  Re: RC2 Site
generation failed

   25/03/2004 17:50
   Please respond to
   Maven Users
   List






 The correct command is maven genapp

 In the genapp wizard:
 You can use the default value or change it.
 Change the package name

 run maven site:generate
 = generation is ok for me.

 Emmanuel

 - Original Message -
 From: Mark Jones [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Thursday, March 25, 2004 6:18 PM
 Subject: RC2 Site generation failed


 
  Hello,
 
  I am very new to maven and hope I am sending this request to the right
 place.
 
  I created a Hello World type project using Maven RC2 but am
experiencing
 problems trying to generate the site;
 
  I ran the following command line on linux;
 
  $maven -D package=helloworld genapp
 
  This successfully built a skeleton project.  However, when I ran the
 following;
 
  $maven site:generate
 
  I got the following error message (I've attached the entire output);
 
  BUILD FAILED
  File..
 file:/home/jonesma/.maven/plugins/maven-xdoc-plugin-1.6/plugin.jelly
  Element... j:include
  Line.. 345
  Column 54
  null:-1:-1: null Could not parse Jelly script
  Total time: 2 minutes 8 seconds
  Finished at: Thu Mar 25 15:32:25 GMT 2004
 
 
  I ran the exact same commands yesterday with RC1 and it worked
perfectly.
 
  I would be very grateful for any help.
 
 
  (See attached file: Maven_Site_Gen_Failure)
 
 
 
 
 
  --
 
  This e-mail may contain confidential and/or privileged information. If
you
 are not the intended recipient (or have received this e-mail in error)
 please notify the sender immediately and destroy this e-mail. Any
 unauthorized copying, disclosure or distribution of the material in this
 e-mail is strictly forbidden.
 
 


 --
--
 


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


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






 --

 This e-mail may contain confidential and/or privileged information. If you
are not the intended recipient (or have received this e-mail in error)
please notify the sender immediately and destroy this e-mail. Any
unauthorized copying, disclosure or distribution of the material in this
e-mail is strictly forbidden.



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




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



Re: RC2 Site generation failed

2004-03-25 Thread Mark Jones

Emmanuel

I've attached the output from that command (I've had to gzip it in order to the e-mail 
to accept it)

(See attached file: Maven_Site_Gen_Failure.gz)

Thanks,

Mark.


Mark Jones
eCommerce Technical Manager
State Street International (Ireland) Limited
Direct Tel: + 353 (0) 1 853 8704
E-Mail: [EMAIL PROTECTED]


This e-mail is being received from a member of Team State Street.
State Street Corporation is not an affiliate of Deutsche Bank AG.


   

  Emmanuel

  Venisse To:   Maven Users List [EMAIL 
PROTECTED]   
  [EMAIL PROTECTED]cc:
 
  .netSubject:  Re: RC2 Site generation 
failed
   

  25/03/2004 18:45 

  Please respond to

  Maven Users 

  List

   

   





Could you run maven -X -e site:generate for obtain more information?

Emmanuel

- Original Message -
From: Mark Jones [EMAIL PROTECTED]
To: Maven Users List [EMAIL PROTECTED]
Sent: Thursday, March 25, 2004 7:26 PM
Subject: Re: RC2 Site generation failed



 Emmanuel,

 Thanks very much for getting back.  Unfortunately, it still isn't woking.
I downloaded the source again, delete ~/.maven, and ran the following;

 $MAVEN_HOME/bin/install_repo.sh ~/.maven/repository
 maven genapp
   Project template = default
   App Id = HelloWorld
   App Name = Hello World
   Package = helloworld
 maven site:generate

 but got the following failure;

 Validating project-info.html
 Validating team-list.html
 [echo] Generating
/home/jonesma/Projects/HelloWorld/target/docs/linkcheck.html from
/home/jonesma/Projects/HelloWorld/target/linkcheck/docs/linkcheck.xml

 BUILD FAILED
 File..
/home/jonesma/.maven/plugins/maven-xdoc-plugin-1.6/plugin.jelly
 Element... j:include
 Line.. 345
 Column 54
 null:-1:-1: null Could not parse Jelly script
 Total time: 1 minutes 18 seconds
 Finished at: Thu Mar 25 18:09:41 GMT 2004

 Could it be something in the project.xml?




   Emmanuel
   Venisse To:   Maven Users
List [EMAIL PROTECTED]
   [EMAIL PROTECTED]cc:
   .netSubject:  Re: RC2 Site
generation failed

   25/03/2004 17:50
   Please respond to
   Maven Users
   List






 The correct command is maven genapp

 In the genapp wizard:
 You can use the default value or change it.
 Change the package name

 run maven site:generate
 = generation is ok for me.

 Emmanuel

 - Original Message -
 From: Mark Jones [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Thursday, March 25, 2004 6:18 PM
 Subject: RC2 Site generation failed


 
  Hello,
 
  I am very new to maven and hope I am sending this request to the right
 place.
 
  I created a Hello World type project using Maven RC2 but am
experiencing
 problems trying to generate the site;
 
  I ran the following command line on linux;
 
  $maven -D package=helloworld genapp
 
  This successfully built a skeleton project.  However, when I ran the
 following;
 
  $maven site:generate
 
  I got the following error message (I've attached the entire output);
 
  BUILD FAILED
  File..
 file:/home/jonesma/.maven/plugins/maven-xdoc-plugin-1.6/plugin.jelly
  Element... j:include
  Line.. 345
  Column 54
  null:-1:-1: null Could not parse Jelly script
  Total time: 2 minutes 8 seconds
  Finished at: Thu Mar 25 15:32:25 GMT 2004
 
 
  I ran the exact same commands yesterday with RC1

RE: RC2 Site generation failed

2004-03-25 Thread Brett Porter
This didn't work out. Can you post a new JIRA issue and attach the gz file?

Thanks,
Brett

 -Original Message-
 From: Mark Jones [mailto:[EMAIL PROTECTED] 
 Sent: Friday, 26 March 2004 6:09 AM
 To: Maven Users List
 Subject: Re: RC2 Site generation failed
 
 
 Emmanuel
 I've attached the output from that command (I've had to gzip 
 it in order to the e-mail to accept it) (See attached file: 
 Maven_Site_Gen_Failure.gz) Thanks, Mark. 
 
 Mark Jones
 eCommerce Technical Manager
 State Street International (Ireland) Limited
 Direct Tel: + 353 (0) 1 853 8704
 E-Mail: [EMAIL PROTECTED] 
 
 This e-mail is being received from a member of Team State 
 Street. State Street Corporation is not an affiliate of 
 Deutsche Bank AG.
   
   

   Emmanuel   
   

   Venisse To:   
 Maven Users List [EMAIL PROTECTED]   
 
   [EMAIL PROTECTED]cc:
   

   .netSubject:  Re: 
 RC2 Site generation failed
 
   
   

   25/03/2004 18:45
   

   Please respond to   
   

   Maven Users
   

   List   
   

   
   

   
   

 Could you run maven -X -e site:generate for obtain more 
 information? Emmanuel
 - Original Message -
 From: Mark Jones [EMAIL PROTECTED]
 To: Maven Users List [EMAIL PROTECTED]
 Sent: Thursday, March 25, 2004 7:26 PM
 Subject: Re: RC2 Site generation failed
 
  Emmanuel,
 
  Thanks very much for getting back.  Unfortunately, it still isn't 
  woking.
 I downloaded the source again, delete ~/.maven, and ran the following;
 
  $MAVEN_HOME/bin/install_repo.sh ~/.maven/repository
  maven genapp
Project template = default
App Id = HelloWorld
App Name = Hello World
Package = helloworld
  maven site:generate
 
  but got the following failure;
 
  Validating project-info.html
  Validating team-list.html
  [echo] Generating
 /home/jonesma/Projects/HelloWorld/target/docs/linkcheck.html 
 from 
 /home/jonesma/Projects/HelloWorld/target/linkcheck/docs/linkcheck.xml
 
  BUILD FAILED
  File..
 /home/jonesma/.maven/plugins/maven-xdoc-plugin-1.6/plugin.jelly
  Element... j:include
  Line.. 345
  Column 54
  null:-1:-1: null Could not parse Jelly script
  Total time: 1 minutes 18 seconds
  Finished at: Thu Mar 25 18:09:41 GMT 2004
 
  Could it be something in the project.xml?
 
 
 
 
Emmanuel
Venisse To:   
 Maven Users
 List [EMAIL PROTECTED]
[EMAIL PROTECTED]cc:
.netSubject:  
 Re: RC2 Site
 generation failed
 
25/03/2004 17:50
Please respond to
Maven Users
List
 
 
 
 
 
 
  The correct command is maven genapp
 
  In the genapp wizard:
  You can use the default value or change it.
  Change the package name
 
  run maven site:generate
  = generation is ok for me.
 
  Emmanuel
 
  - Original Message -
  From: Mark Jones [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Thursday, March 25, 2004 6:18 PM
  Subject: RC2 Site generation failed
 
 
  
   Hello,
  
   I am very new to maven and hope I am sending this request to the 
   right
  place.
  
   I created a Hello World type project using Maven RC2 but am
 experiencing
  problems trying to generate the site;
  
   I ran the following command line on linux;
  
   $maven -D package=helloworld genapp
  
   This successfully built a skeleton project.  However, 
 when I ran the
  following;
  
   $maven

Re: RC2 Site generation failed

2004-03-25 Thread Konstantin Shaposhnikov
I have the same problem.

It appears only on my linux box and related to the linkcheck
plugin, because when I turn it off everything is all right.

May be this can help.

Best regards,
Konstantin

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



RE: RC2 Site generation failed

2004-03-25 Thread Brett Porter
Sounds like the file:/ vs file:// bug. I think it is fixed in the xdoc
plugin but didn't make RC2.

See here for a fix while waiting for the next xdoc plugin release:
http://jira.codehaus.org/secure/ViewIssue.jspa?key=MPXDOC-84

 -Original Message-
 From: Konstantin Shaposhnikov [mailto:[EMAIL PROTECTED] 
 Sent: Friday, 26 March 2004 9:04 AM
 To: Maven Users List
 Subject: Re: RC2 Site generation failed
 
 
 I have the same problem.
 
 It appears only on my linux box and related to the linkcheck 
 plugin, because when I turn it off everything is all right.
 
 May be this can help.
 
 Best regards,
 Konstantin
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 

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



Re: RC2 Site generation failed

2004-03-25 Thread Emmanuel Venisse
I can't see your file. Could you post a new issue in jira with your file in
attachment.

Thanks
Emmanuel

- Original Message - 
From: Mark Jones [EMAIL PROTECTED]
To: Maven Users List [EMAIL PROTECTED]
Sent: Thursday, March 25, 2004 8:08 PM
Subject: Re: RC2 Site generation failed



 Emmanuel

 I've attached the output from that command (I've had to gzip it in order
to the e-mail to accept it)

 (See attached file: Maven_Site_Gen_Failure.gz)

 Thanks,

 Mark.

 
 Mark Jones
 eCommerce Technical Manager
 State Street International (Ireland) Limited
 Direct Tel: + 353 (0) 1 853 8704
 E-Mail: [EMAIL PROTECTED]
 

 This e-mail is being received from a member of Team State Street.
 State Street Corporation is not an affiliate of Deutsche Bank AG.



   Emmanuel
   Venisse To:   Maven Users
List [EMAIL PROTECTED]
   [EMAIL PROTECTED]cc:
   .netSubject:  Re: RC2 Site
generation failed

   25/03/2004 18:45
   Please respond to

   Maven Users
   List






 Could you run maven -X -e site:generate for obtain more information?

 Emmanuel

 - Original Message -
 From: Mark Jones [EMAIL PROTECTED]
 To: Maven Users List [EMAIL PROTECTED]
 Sent: Thursday, March 25, 2004 7:26 PM
 Subject: Re: RC2 Site generation failed


 
  Emmanuel,
 
  Thanks very much for getting back.  Unfortunately, it still isn't
woking.
 I downloaded the source again, delete ~/.maven, and ran the following;
 
  $MAVEN_HOME/bin/install_repo.sh ~/.maven/repository
  maven genapp
Project template = default
App Id = HelloWorld
App Name = Hello World
Package = helloworld
  maven site:generate
 
  but got the following failure;
 
  Validating project-info.html
  Validating team-list.html
  [echo] Generating
 /home/jonesma/Projects/HelloWorld/target/docs/linkcheck.html from
 /home/jonesma/Projects/HelloWorld/target/linkcheck/docs/linkcheck.xml
 
  BUILD FAILED
  File..
 /home/jonesma/.maven/plugins/maven-xdoc-plugin-1.6/plugin.jelly
  Element... j:include
  Line.. 345
  Column 54
  null:-1:-1: null Could not parse Jelly script
  Total time: 1 minutes 18 seconds
  Finished at: Thu Mar 25 18:09:41 GMT 2004
 
  Could it be something in the project.xml?
 
 
 
 
Emmanuel
Venisse To:   Maven Users
 List [EMAIL PROTECTED]
[EMAIL PROTECTED]cc:
.netSubject:  Re: RC2 Site
 generation failed
 
25/03/2004 17:50
Please respond to
Maven Users
List
 
 
 
 
 
 
  The correct command is maven genapp
 
  In the genapp wizard:
  You can use the default value or change it.
  Change the package name
 
  run maven site:generate
  = generation is ok for me.
 
  Emmanuel
 
  - Original Message -
  From: Mark Jones [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Thursday, March 25, 2004 6:18 PM
  Subject: RC2 Site generation failed
 
 
  
   Hello,
  
   I am very new to maven and hope I am sending this request to the right
  place.
  
   I created a Hello World type project using Maven RC2 but am
 experiencing
  problems trying to generate the site;
  
   I ran the following command line on linux;
  
   $maven -D package=helloworld genapp
  
   This successfully built a skeleton project.  However, when I ran the
  following;
  
   $maven site:generate
  
   I got the following error message (I've attached the entire output);
  
   BUILD FAILED
   File..
  file:/home/jonesma/.maven/plugins/maven-xdoc-plugin-1.6/plugin.jelly
   Element... j:include
   Line.. 345
   Column 54
   null:-1:-1: null Could not parse Jelly script
   Total time: 2 minutes 8 seconds
   Finished at: Thu Mar 25 15:32:25 GMT 2004
  
  
   I ran the exact same commands yesterday with RC1 and it worked
 perfectly.
  
   I would be very grateful for any help.
  
  
   (See attached file: Maven_Site_Gen_Failure)
  
  
  
  
  
   --
  
   This e-mail may contain confidential and/or privileged information. If
 you
  are not the intended recipient (or have received this e-mail in error)
  please notify the sender immediately and destroy this e-mail. Any
  unauthorized copying, disclosure or distribution of the material in this
  e-mail is strictly forbidden.
  
  
 
 

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

Re: RC2 Torque Plugin

2004-03-24 Thread Joachim Bader
On Wednesday 24 March 2004 12:08, Joe Taylor wrote:
 RC2 doesn't seem to have the torque plugin. From earlier posts it looks
 like this has been migrated into the torque project but I cant find a
 download for it. Do i need to build this from CVS? or have i missed
 something else along the way??

see http://db.apache.org/torque/maven-howto.html#Installation
you have to build the maven torque plugin from cvs

regards,
Joachim


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



Re: RC2 Torque Plugin

2004-03-24 Thread Joe Taylor
That did the trick 

cheers

On Wed, 2004-03-24 at 11:28, Joachim Bader wrote:
 On Wednesday 24 March 2004 12:08, Joe Taylor wrote:
  RC2 doesn't seem to have the torque plugin. From earlier posts it looks
  like this has been migrated into the torque project but I cant find a
  download for it. Do i need to build this from CVS? or have i missed
  something else along the way??
 
 see http://db.apache.org/torque/maven-howto.html#Installation
 you have to build the maven torque plugin from cvs
 
 regards,
 Joachim
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 




This E-mail transmission may contain confidential or legally privileged information 
that is intended for the addressee only. 
Any views or opinions presented are solely those of the author and do not necessarily 
represent those of CNM Limited. 
If you are not the intended recipient you are hereby notified that any disclosure, 
copying, distribution or reliance upon the contents of this E-mail is strictly 
prohibited. 
If you have received this E-mail transmission in error, please notify the sender 
immediately, so that CNM Limited may arrange for its proper delivery. 
Please then delete the message from your inbox.

This email has been scanned for all viruses by the MessageLabs SkyScan
service. For more information on a proactive anti-virus service working
around the clock, around the globe, visit http://www.messagelabs.com


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



RE: RC2?

2004-02-25 Thread Brett Porter
I'll reopen. Please provide a small test case if you have one.

In general if an issue is closed and you are still seeing it, please reopen
with a small test case.

 -Original Message-
 From: Jörg Schaible [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, 25 February 2004 6:44 PM
 To: Maven Users List
 Subject: RE: RC2?
 
 
 Brett Porter wrote on Tuesday, February 24, 2004 11:00 PM:
 
  http://jira.codehaus.org/secure/BrowseProject.jspa?id=10030re
  port=roadmap
  
  4 small outstanding issues that have cropped up.
 
 Brett,
 
 can you comment about this? 
 http://jira.codehaus.org/secure/ViewIssue.jspa ?key=MAVEN-1154
 
 
 You set this to closed, but if I build 
 RC2 I still have inheritance for all my elements (reports, 
 developers, ...)
 
 Regards,
 Jörg
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


RE: RC2?

2004-02-24 Thread Brett Porter
http://jira.codehaus.org/secure/BrowseProject.jspa?id=10030report=roadmap

4 small outstanding issues that have cropped up.

http://feeds.codehaus.org/maven/

- Brett

 -Original Message-
 From: Darren Hartford [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, 25 February 2004 5:43 AM
 To: Maven Users List
 Subject: RC2?
 
 
 Hey all,
 I'm sure this has been asked a dozen times, but is there a 
 roadmap for RC2?
 
 Just curious of there is a target timeline and-or 
 shrinking-growing todo list before RC2 and-or features that 
 must be in RC2.
 
 -D
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


RE: RC2?

2004-02-24 Thread Jörg Schaible
Brett Porter wrote on Tuesday, February 24, 2004 11:00 PM:

 http://jira.codehaus.org/secure/BrowseProject.jspa?id=10030re
 port=roadmap 
 
 4 small outstanding issues that have cropped up.

Brett,

can you comment about this?
http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-1154

You set this to closed, but if I build RC2 I still have inheritance for all my 
elements (reports, developers, ...)

Regards,
Jörg

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