Strategy for upgrading project that uses some classes from com.adobe.cq.social.blog
Hi,
We are attempting to move a site that uses some interfaces from the com.adobe.cq.social.blog from AEM 6.0 to 6.2 I know that cq social stuff has been removed. We only use the blog api stuff around pages in our project:
com.adobe.cq.social.blog.Blog
com.adobe.cq.social.blog.BlogManager
com.adobe.cq.social.blog.BlogEntry
com.adobe.cq.social.blog.BlogEntryFilter
So far I tried incl..uding the social dependency in my pom file like the below and the project does compile however it is not able to start the bundle in AEM imported package cannot be resolved error in sling console: com.adobe.cq.social.blog,version=[1.0,2) -- Cannot be resolved.
<dependency>
<groupId>com.adobe.cq.social</groupId>
<artifactId>cq-social-blog</artifactId>
<version>1.0.15</version>
</dependency>
Has anyone had any luck getting this to work? or any ideas on how to proceed?