Dependency issue : com.adobe.cq.social.scf.core,version=[1.1,2) -- Cannot be resolved
Hi Experts,
I've an fully updated AEM 6.2 instance. I am trying to extend some AEM communities component functionality. For that I used the dependency
<dependency>
<groupId>com.adobe.cq.social</groupId>
<artifactId>cq-socialcommunities-api</artifactId>
<version>1.11.170</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.adobe.aem</groupId>
<artifactId>uber-jar</artifactId>
<version>6.2.0</version>
<scope>provided</scope>
<classifier>apis</classifier>
</dependency>.
Now, I am getting the issue in felix console as 'com.adobe.cq.social.scf.core,version=[1.1,2) -- Cannot be resolved' .
When I checked the version of above package, it is
<dependency>
<groupId>com.adobe.cq.social</groupId>
<artifactId>cq-social-scf-api</artifactId>
<version>2.0.14</version>
<scope>provided</scope>
</dependency>
When I checked in on maven repository, latest version of 'cq-socialcommunities-api' is same as I am using and latest version of 'cq-social-scf-api exposed is 1.0.8.
Please correct me if I am wrong.
Also, suggest me to resolve the issue.
Thanks
Rajeev