RE: how to deploy customization in solr that requires dependency

2013-03-19 Thread Gian Maria Ricci
Thanks to everyone, now I have a clearer understanding of where to put my jar dependencies. Gian Maria. -Original Message- From: Shawn Heisey [mailto:s...@elyograg.org] Sent: Monday, March 18, 2013 11:57 PM To: solr-user@lucene.apache.org Subject: Re: how to deploy customization in

Re: how to deploy customization in solr that requires dependency

2013-03-18 Thread Shawn Heisey
On 3/18/2013 11:47 AM, Gian Maria Ricci wrote: I want to deploy a custom filter developed in java to Solr4, my problem is that it requires to access Sql Server, so it depends from sqljdbc4.jar, but I got a java.lang.ClassNotFoundException: com.microsoft.sqlserver.jdbc.SQLServerDriver Solr has a

Re: how to deploy customization in solr that requires dependency

2013-03-18 Thread Dmitry Kan
Hi, See here, might help: http://wiki.apache.org/solr/SolrPlugins#How_to_Load_Plugins We don't use multicore functionality of SOLR, so we decided to bundle SOLR dependencies into the war file of the solr web app. Regards, Dmitry On Mon, Mar 18, 2013 at 7:47 PM, Gian Maria Ricci wrote: > Hi t