You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by eh...@apache.org on 2009/10/12 15:39:22 UTC

svn commit: r824331 - /lucene/solr/trunk/build.xml

Author: ehatcher
Date: Mon Oct 12 13:39:22 2009
New Revision: 824331

URL: http://svn.apache.org/viewvc?rev=824331&view=rev
Log:
Allow _ant run_ jetty.port to be configurable.  -Djetty.port=8888, for example

Modified:
    lucene/solr/trunk/build.xml

Modified: lucene/solr/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/build.xml?rev=824331&r1=824330&r2=824331&view=diff
==============================================================================
--- lucene/solr/trunk/build.xml (original)
+++ lucene/solr/trunk/build.xml Mon Oct 12 13:39:22 2009
@@ -618,6 +618,7 @@
     <property name="example.solr.home" location="example/solr"/>
     <property name="example.data.dir" location="example/solr/data"/>
     <property name="example.debug.suspend" value="n"/>
+    <property name="example.jetty.port" value="8983"/>
     <condition property="example.jvm.line" value="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=${example.debug.suspend},address=5005">
       <isset property="example.debug"/>
     </condition>
@@ -627,6 +628,7 @@
       <jvmarg line="${example.jvm.line}"/>
       <sysproperty key="solr.solr.home" file="${example.solr.home}"/>
       <sysproperty key="solr.data.dir" file="${example.data.dir}"/>
+      <sysproperty key="jetty.port" value="${example.jetty.port}"/>
     </java>
 
   </target>