As per the document shared, they are also using the old client : private static HttpSolrClient getClient() {
return new HttpSolrClient.Builder().withBaseSolrUrl("http://localhost:8983/solr")
.build();
} which has been deprecated as per Solrj 9....
Hi, I'm looking to integrate AEM 6.5 with Solrj latest version (9.3.0).I see everywhere the SolrClient used is via HttpSolrClient but as per latest 9.X updates , it has been deprecated and Http2SolrClient is being suggested, but I cant find any examples to use the same .. If I try using the Http2So...