Copy mboot.jar to parent dir

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162885 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Emmanuel Venisse 2004-07-27 09:37:56 +00:00
parent 8c9e08bc4a
commit 67c840afce
1 changed files with 8 additions and 6 deletions

View File

@ -1,13 +1,15 @@
@echo off
set buildDir=target
rmdir /S/Q %buildDir%
if exist %buildDir% rmdir /S/Q %buildDir%
mkdir %buildDir%
%JAVA_HOME%\bin\javac -d %buildDir% @sources.txt
cd %buildDir%
%JAVA_HOME%\bin\jar -cfm ..\mboot.jar ..\manifest.txt *
cd ..
cp mboot.jar ..