Return-Path: Delivered-To: apmail-maven-continuum-dev-archive@www.apache.org Received: (qmail 96789 invoked from network); 15 Jul 2005 04:05:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 15 Jul 2005 04:05:01 -0000 Received: (qmail 14152 invoked by uid 500); 15 Jul 2005 04:05:00 -0000 Delivered-To: apmail-maven-continuum-dev-archive@maven.apache.org Received: (qmail 14128 invoked by uid 500); 15 Jul 2005 04:05:00 -0000 Mailing-List: contact continuum-dev-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: continuum-dev@maven.apache.org Delivered-To: mailing list continuum-dev@maven.apache.org Received: (qmail 14115 invoked by uid 99); 15 Jul 2005 04:05:00 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Jul 2005 21:05:00 -0700 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=DNS_FROM_RFC_ABUSE,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [63.246.20.114] (HELO 63-246-20-114.contegix.com) (63.246.20.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Jul 2005 21:04:57 -0700 Received: (qmail 6514 invoked by uid 89); 15 Jul 2005 04:04:57 -0000 Received: from unknown (HELO codehaus01.managed.contegix.com) (127.0.0.1) by smtp.domain.com with SMTP; 15 Jul 2005 04:04:57 -0000 Message-ID: <4369408.1121400297045.JavaMail.haus-jira@codehaus01.managed.contegix.com> Date: Thu, 14 Jul 2005 23:04:57 -0500 (CDT) From: "Mark Gaylard (JIRA)" To: continuum-dev@maven.apache.org Subject: [jira] Created: (CONTINUUM-231) Spaces in PATH env variable stop plexus.bat from running Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Spaces in PATH env variable stop plexus.bat from running -------------------------------------------------------- Key: CONTINUUM-231 URL: http://jira.codehaus.org/browse/CONTINUUM-231 Project: Continuum Type: Bug Versions: 1.0-alpha-3 Environment: Windows XP Reporter: Mark Gaylard If the PATH environment variable has spaces in it, you get NoClassDefFound exceptions when running plexus.bat. The solution is to put quotes around the -Dplexus.system.path=%PATH% segment of the startup command. ie: %PLEXUS_JAVA_EXE% %PLEXUS_OPTS% -classpath %PLEXUS_HOME%\core\boot\classworlds-*.jar "-Dclassworlds.conf=%PLEXUS_HOME%\conf\classworlds.conf" -Dplexus.core=%PLEXUS_CORE% -Dplexus.system.path=%PATH% -Djava.io.tmpdir=%PLEXUS_TMPDIR% -Dplexus.home=%PLEXUS_HOME% org.codehaus.classworlds.Launcher %PLEXUS_CMD_LINE_ARGS% becomes %PLEXUS_JAVA_EXE% %PLEXUS_OPTS% -classpath %PLEXUS_HOME%\core\boot\classworlds-*.jar "-Dclassworlds.conf=%PLEXUS_HOME%\conf\classworlds.conf" -Dplexus.core=%PLEXUS_CORE% "-Dplexus.system.path=%PATH%" -Djava.io.tmpdir=%PLEXUS_TMPDIR% -Dplexus.home=%PLEXUS_HOME% org.codehaus.classworlds.Launcher %PLEXUS_CMD_LINE_ARGS% -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira