How can I connect my Solr collection that runs on a Jetty 6 with an external ZooKeeper?
from the tutorial I learned how to start solr from the command line and connect it with ZooKeeper
java -DnumShards=2 -Dbootstrap_confdir=./solr/collection1/conf -Dcollection.configName=myconf -DzkHost=localhost:2181 -jar start.jar
but where can I define these parameters when I start solr with maven. I quess I have to add them somehow at my jetty.xml or web.xml. But I couln't figure out how.