I am new to AEM .Trying to do integration of AEM As cloud with External Solr but here am trying to add dependency of solrj and zookeeper those dependency are not getting resolved. Is there any idea how we can do integration AEM as cloud .which dependency versions supported by cloud? If yes then how? your suggestions will be helpful.
Thanks.
Solved! Go to Solution.
Views
Replies
Total Likes
@prachiat The following dependency versions should get you through with AEM as cloud service
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.solr-solrj</artifactId>
<version>7.7.1_1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.noggit</artifactId>
<version>0.8_1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<version>3.6.2</version>
<scope>provided</scope>
</dependency>
A detailed step by step process is outlined here - https://medium.com/@toimrank/solr-integration-with-aem-java-e88dabb513cb