mirror of
https://github.com/apache/maven.git
synced 2025-02-08 11:05:37 +00:00
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162893 13f79535-47bb-0310-9956-ffa450edef68
14 lines
197 B
Bash
Executable File
14 lines
197 B
Bash
Executable File
#!/bin/sh
|
|
|
|
buildDir=target
|
|
|
|
rm -rf ${buildDir} > /dev/null 2>&1
|
|
|
|
mkdir ${buildDir}
|
|
|
|
javac -d ${buildDir} @sources.txt
|
|
|
|
( cd ${buildDir} ; jar -cfm ../mboot.jar ../manifest.txt * )
|
|
|
|
cp mboot.jar ..
|