mirror of https://github.com/apache/maven.git
*** empty log message ***
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162720 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
18b1fd115f
commit
3f4b1ae743
|
@ -45,6 +45,14 @@ while [ $# -gt 0 ]; do
|
|||
shift
|
||||
fi
|
||||
;;
|
||||
--pom*)
|
||||
if echo $1 | grep -q '=' ; then
|
||||
pom=`echo $1 | sed 's/^--pom=//'`
|
||||
else
|
||||
pom=$2
|
||||
shift
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
shift
|
||||
|
@ -64,4 +72,4 @@ if $cygwin; then
|
|||
CP=`cygpath -pw "$CP"`
|
||||
fi
|
||||
|
||||
java -classpath "$CP" org.apache.maven.plugin.generator.Main $mode "$source" "$destination"
|
||||
java -classpath "$CP" org.apache.maven.plugin.generator.Main $mode "$source" "$destination" "$pom"
|
||||
|
|
Loading…
Reference in New Issue