You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ca...@apache.org on 2008/12/05 20:12:52 UTC

svn commit: r723823 - /maven/repository-tools/trunk/src/bin/bundle-upload/deploy-bundle

Author: carlos
Date: Fri Dec  5 11:12:52 2008
New Revision: 723823

URL: http://svn.apache.org/viewvc?rev=723823&view=rev
Log:
Give priority to Maven 2 poms over Maven 1 when both are present in a bundle

Modified:
    maven/repository-tools/trunk/src/bin/bundle-upload/deploy-bundle

Modified: maven/repository-tools/trunk/src/bin/bundle-upload/deploy-bundle
URL: http://svn.apache.org/viewvc/maven/repository-tools/trunk/src/bin/bundle-upload/deploy-bundle?rev=723823&r1=723822&r2=723823&view=diff
==============================================================================
--- maven/repository-tools/trunk/src/bin/bundle-upload/deploy-bundle (original)
+++ maven/repository-tools/trunk/src/bin/bundle-upload/deploy-bundle Fri Dec  5 11:12:52 2008
@@ -45,12 +45,12 @@
   done
 
   echo "Searching for POM:"
-  echo "...checking for 'project.xml'"
-  POM=project.xml
+  echo "...checking for 'pom.xml'"
+  POM=pom.xml
   if [ ! -f ${POM} ]
   then
-    echo "...checking for 'pom.xml'"
-    POM=pom.xml
+    echo "...checking for 'project.xml'"
+    POM=project.xml
   fi
 
   if [ ! -f ${POM} ]