o adding some little test script that showed up this morning but is not in SVN

git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@471310 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-11-05 01:15:13 +00:00
parent fa14f0c693
commit 8db036a7e6

View File

@ -0,0 +1,22 @@
#!/bin/sh
POM=bundle.tmp/project.xml
maven2=`cat ${POM} | grep '<modelVersion>' `
echo ${maven2}
if [ ! -z "${maven2}" ]
then
echo " ========= MAVEN 2 ========= "
fi
POM=bundle.tmp/pom.xml
maven2=`cat ${POM} | grep '<modelVersion>' `
echo ${maven2}
if [ ! -z "${maven2}" ]
then
echo " ========= MAVEN 2 ========= "
fi