Re: bin/solr testing surprise with techproducts example

2020-10-16 Thread Christine Poerschke (BLOOMBERG/ LONDON)
testing surprise with techproducts example : Question: What is the replacement for "cd solr ; ant dist server" usage? AFAICT the the most straightwoard "adaptation" of... $ cd solr && ant server && bin/solr -e SOMETHING ...seems to be (using gdub) ... $ cd solr &a

Re: bin/solr testing surprise with techproducts example

2020-09-28 Thread Erick Erickson
See: SOLR-14888 > On Sep 28, 2020, at 2:08 PM, Chris Hostetter wrote: > > > : Question: What is the replacement for "cd solr ; ant dist server" usage? > > AFAICT the the most straightwoard "adaptation" of... > > $ cd solr && ant server && bin/solr -e SOMETHING > > ...seems to be (using

Re: bin/solr testing surprise with techproducts example

2020-09-28 Thread Chris Hostetter
: Question: What is the replacement for "cd solr ; ant dist server" usage? AFAICT the the most straightwoard "adaptation" of... $ cd solr && ant server && bin/solr -e SOMETHING ...seems to be (using gdub) ... $ cd solr && gw dev && ./packaging/build/dev/bin/solr -e SOMETHING ...which i

Re: bin/solr testing surprise with techproducts example

2020-09-24 Thread Christine Poerschke (BLOOMBERG/ LONDON)
Thank you Munendra, Jason, Erick and Alex for the pointers and extra context! The techproducts example is once again running fine for me locally now then. :) From: dev@lucene.apache.org At: 09/24/20 16:02:27To: dev@lucene.apache.org Subject: Re: bin/solr testing surprise with techproducts

Re: bin/solr testing surprise with techproducts example

2020-09-24 Thread Alexandre Rafalovitch
I run ./gradlew -p solr/packaging assemble . I think that shows when you do ./gradlew helpWorkflow (one of many help commands added for our projects). And it will be in solr/packaging/build/solr-9.0.0-SNAPSHOT I need to experiment more with ./gradlew dev command, if it does not do full wipe out,

Re: bin/solr testing surprise with techproducts example

2020-09-24 Thread Erick Erickson
Christine: Quite possibly you had some remnants of an ant build hanging around from bin/solr. If I start with a fresh clone and try to start from bin/solr I usually get no class def errors. git clean -dxf if my friend to be absolutely sure that I have nothing laying around when switching back

Re: bin/solr testing surprise with techproducts example

2020-09-24 Thread Jason Gerlowski
I couldn't reproduce your error on running techproducts. Though whatever is causing it locally for you sounds a bit related to SOLR-13690 maybe? Jason On Wed, Sep 23, 2020 at 11:28 AM Munendra S N wrote: > > The wiki has steps to build solr with gradle >

Re: bin/solr testing surprise with techproducts example

2020-09-23 Thread Munendra S N
The wiki has steps to build solr with gradle https://cwiki.apache.org/confluence/display/SOLR/Building+Solr+with+Gradle ./gradlew assemble or ./gradlew dev will create runnable solr instance. On Wed, Sep 23, 2020, 8:01 PM Christine Poerschke (BLOOMBERG/ LONDON) < cpoersc...@bloomberg.net>

bin/solr testing surprise with techproducts example

2020-09-23 Thread Christine Poerschke (BLOOMBERG/ LONDON)
Hello everyone. So I was trying to locally test the small https://issues.apache.org/jira/browse/SOLR-11167 change on master branch and encountered two things: Question: What is the replacement for "cd solr ; ant dist server" usage? If there is an equivalent -- "./gradlew -p solr assembleDist"