dion        2002/10/03 05:24:24

  Modified:    xdocs    changes.xml
               src/bin  maven
  Log:
  Fix for shell script not handling MAVEN_HOME with spaces in the path
  
  Revision  Changes    Path
  1.4       +4 -0      jakarta-turbine-maven/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/xdocs/changes.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- changes.xml       3 Oct 2002 11:33:55 -0000       1.3
  +++ changes.xml       3 Oct 2002 12:24:24 -0000       1.4
  @@ -7,6 +7,10 @@
   
     <body>
       <release version="1.0-beta-8" date="in CVS">
  +      <action dev="dion" type="fix" due-to="Berin Loritsch">
  +        Fixed maven shell script to work with directories that may have
  +        spaces in their name, e.g. MAVEN_HOME
  +      </action>
         <action dev="jvanzyl" type="add" due-to="Michael McKibben">
           Added support for generic dependency handling.
           These changes add support for downloading of non-jar dependencies in the
  
  
  
  1.17      +4 -4      jakarta-turbine-maven/src/bin/maven
  
  Index: maven
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/bin/maven,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- maven     8 Sep 2002 03:57:58 -0000       1.16
  +++ maven     3 Oct 2002 12:24:24 -0000       1.17
  @@ -107,8 +107,8 @@
   
   $JAVACMD \
     $MAVEN_OPTS \
  -  -classpath ${MAVEN_HOME}/lib/forehead-${FOREHEAD_VERSION}.jar \
  -  -Dforehead.conf.file=${MAVEN_HOME}/bin/forehead.conf  \
  -  -Dtools.jar=$TOOLS_JAR \
  -  -Dmaven.home=${MAVEN_HOME} \
  +  -classpath "${MAVEN_HOME}/lib/forehead-${FOREHEAD_VERSION}.jar" \
  +  "-Dforehead.conf.file=${MAVEN_HOME}/bin/forehead.conf"  \
  +  "-Dtools.jar=$TOOLS_JAR" \
  +  "-Dmaven.home=${MAVEN_HOME}" \
     $MAIN_CLASS $@
  
  
  

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

Reply via email to