Hello, we are currently working on integrating the algolia search into our AEM 6.2 Environment. To achieve this, we added the needed dependecy into our maven build and installed the osgi-bundle (algoliasearch-apache-uber-3.12.0) in the felix console.
Since then everything went fine without any major issues.
This changed when we added following imports to our algolia communication service:
import com.algolia.search.com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.algolia.search.Defaults;
The java build works fine but we receive the following error in one of our aem packages during runtime of our aem instances:
com.algolia.search.com.fasterxml.jackson.annotation ā Cannot be resolved
com.algolia.search.com.fasterxml.jackson.databind ā Cannot be resolved
For us it looks as if the above mentioned OSGi-bundle does not export those two classes. Might this be an issue or did we do anything wrong?
Greetings Chris