This section of the AEM Communities documentation is in addition to:
There are now two “uber” artifacts that replace individual artifacts:
Following is an example of a GAV for the AEM Communities API jar:
<dependency>
<groupId>com.adobe.cq.social</groupId>
<artifactId>cq-socialcommunities-api</artifactId>
<version>1.11.170</version>
<scope>provided</scope>
</dependency>
Ensure thet the version specified corresponds with the Communities package version installed for AEM Communities. To verify the installed version number:
Login with adminstrative privileges.
Browse to Package Manager. For example, http://localhost:4502/crx/packmgr/
locate the package cq-socialcommunities-pkg-1.x.xxx
extract the version from the package name
It is recommended to keep up-to-date with the most recent Communities release.
Visit the Latest Releases section to identify the most recent version.
The Communities API jar must be specified before the Uber API jar.
<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.3.0</version>
<scope>provided</scope>
<classifier>apis</classifier>
</dependency>