I am using spring-boot-starter-parent version 1.4.0.M3 and spring-boot-starter-data-solr without any version in pom file and solr-solrj also without any version (it picks up 5.5.1 version) . Would like to include solr-core also for that I had to mention the version ,if I add version 6.0.0 or 6.1.0 the project compiles ,but during runtime it fails when I tried to create SolrConfig object with below error
Caused by: java.lang.NoSuchMethodError: org.apache.solr.common.util.Utils.fromJSONResource(Ljava/lang/String;)Ljava/lang/Object;
at org.apache.solr.core.ConfigOverlay.<clinit>(ConfigOverlay.java:
176)
Tried lowering the solr-core version ,but it fails during compile time itself. Is there a compatibility metric between solr-solrj ,solr-core and spring-boot-starter-data-solr
