Author: sebb Date: Wed Mar 24 16:23:51 2010 New Revision: 927110 URL: http://svn.apache.org/viewvc?rev=927110&view=rev Log: Allow override of Maven path
Modified: jakarta/bsf/branches/bsf3.x/distribution/build.xml Modified: jakarta/bsf/branches/bsf3.x/distribution/build.xml URL: http://svn.apache.org/viewvc/jakarta/bsf/branches/bsf3.x/distribution/build.xml?rev=927110&r1=927109&r2=927110&view=diff ============================================================================== --- jakarta/bsf/branches/bsf3.x/distribution/build.xml (original) +++ jakarta/bsf/branches/bsf3.x/distribution/build.xml Wed Mar 24 16:23:51 2010 @@ -45,7 +45,8 @@ <os family="windows"/> </condition> - <exec executable="mvn${maven.suffix}" dir="${basedir}" failonerror="true"> + <property name="mvn.path" value="" description="Allows override in case mvn is not on the default path"/> + <exec executable="${mvn.path}mvn${maven.suffix}" dir="${basedir}" failonerror="true"> <arg line="install:install-file -DgroupId=org.apache.bsf -DartifactId=bsf-all -Dversion=${bsf.version} -Dpackaging=jar -DgeneratePom=false -Dfile=${basedir}/target/bsf-all-${bsf.version}.jar"/> </exec> --------------------------------------------------------------------- To unsubscribe, e-mail: bsf-dev-unsubscr...@jakarta.apache.org For additional commands, e-mail: bsf-dev-h...@jakarta.apache.org