From: <ptr...@us...> - 2010-09-19 07:09:37
|
Revision: 1358 http://j-trac.svn.sourceforge.net/j-trac/?rev=1358&view=rev Author: ptrthomas Date: 2010-09-19 07:09:30 +0000 (Sun, 19 Sep 2010) Log Message: ----------- added console message to show the local maven repo location the ant build is using, and added sample "maven.repo.local" entry for build.properties in the initial comment Modified Paths: -------------- trunk/jtrac/build.xml Modified: trunk/jtrac/build.xml =================================================================== --- trunk/jtrac/build.xml 2010-09-19 06:43:55 UTC (rev 1357) +++ trunk/jtrac/build.xml 2010-09-19 07:09:30 UTC (rev 1358) @@ -5,6 +5,7 @@ tomcat.home=C:/apache-tomcat-5.5.16 [optional, jetty used by default] jmeter.home=C:/jakarta-jmeter-2.2 [optional, for load testing] findbugs.home=C:/peter/opt/findbugs-1.3.1 [optional, for running findbugs] + maven.repo.local=D:/repo --> <property file="build.properties"/> @@ -18,7 +19,8 @@ classpath="etc/maven-ant-tasks.jar"/> <condition property="maven.repo.local" value="${maven.repo.local}" else="${user.home}/.m2/repository"> <isset property="maven.repo.local"/> - </condition> + </condition> + <echo>using maven local repo: ${maven.repo.local}</echo> <artifact:localRepository id="local.repository" path="${maven.repo.local}"/> <artifact:pom file="pom.xml" id="maven.project"/> <artifact:dependencies pathId="compile.classpath" filesetId="compile.fileset" useScope="compile"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |