You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by br...@apache.org on 2004/05/08 02:27:18 UTC

cvs commit: maven maven.xml

brett       2004/05/07 17:27:18

  Modified:    xdocs    Tag: MAVEN-1_0-BRANCH changes.xml
               .        Tag: MAVEN-1_0-BRANCH maven.xml
  Log:
  PR: MAVEN-956
  install_repo.bat needs this on Windows 98
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.14.4.17 +1 -0      maven/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven/xdocs/changes.xml,v
  retrieving revision 1.14.4.16
  retrieving revision 1.14.4.17
  diff -u -r1.14.4.16 -r1.14.4.17
  --- changes.xml	7 May 2004 22:59:23 -0000	1.14.4.16
  +++ changes.xml	8 May 2004 00:27:18 -0000	1.14.4.17
  @@ -25,6 +25,7 @@
     </properties>
     <body>
       <release version="1.0RC3" date="in CVS">
  +      <action dev="brett" type="fix" issue="MAVEN-956">Fix install_repo.bat problems on Windows 98</action>
         <action dev="brett" type="add" issue="MAVEN-1255">Introduce a backwards compatibility option <code>maven.property.inheritence</code>, which disables the functionality when set to false.</action>
         <action dev="brett" type="fix" issue="MAVEN-1265">Setup dependency path for non-classpath dependencies</action>
         <action dev="brett" type="update" issue="MAVEN-1129" due-to="John Casey">Add a Base64 implementation to replace the sun.* internal version.</action>
  
  
  
  No                   revision
  No                   revision
  1.97.2.26 +3 -3      maven/maven.xml
  
  Index: maven.xml
  ===================================================================
  RCS file: /home/cvs/maven/maven.xml,v
  retrieving revision 1.97.2.25
  retrieving revision 1.97.2.26
  diff -u -r1.97.2.25 -r1.97.2.26
  --- maven.xml	23 Mar 2004 23:29:42 -0000	1.97.2.25
  +++ maven.xml	8 May 2004 00:27:18 -0000	1.97.2.26
  @@ -344,7 +344,7 @@
         <j:whitespace>@ECHO OFF
   if "%1"=="" goto usage
   set REPO_DIR=%1
  -if not exist %REPO_DIR% mkdir %REPO_DIR%
  +if not exist %REPO_DIR%\nul mkdir %REPO_DIR%
   if "%MAVEN_HOME%"=="" goto MHusage
   </j:whitespace>
   <j:forEach var="lib" items="${pom.artifacts}">
  @@ -354,8 +354,8 @@
       <j:set var="libdir" value="lib\endorsed" />
     </j:if>
     <j:if test="${dep.type=='jar'}">
  -<j:whitespace>if not exist %REPO_DIR%\${dep.groupId} mkdir %REPO_DIR%\${dep.groupId}
  -if not exist %REPO_DIR%\${dep.groupId}\jars mkdir %REPO_DIR%\${dep.groupId}\jars
  +<j:whitespace>if not exist %REPO_DIR%\${dep.groupId}\nul mkdir %REPO_DIR%\${dep.groupId}
  +if not exist %REPO_DIR%\${dep.groupId}\jars\nul mkdir %REPO_DIR%\${dep.groupId}\jars
   if not exist "%REPO_DIR%\${dep.groupId}\jars\${dep.artifactId}-${dep.version}.jar" copy "%MAVEN_HOME%\${libdir}\${dep.artifactId}-${dep.version}.jar" "%REPO_DIR%\${dep.groupId}\jars"
   </j:whitespace>
     </j:if>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org