You're viewing help content for version:
- 6.4
- 6.3
- 6.2
- Older Versions
This section of the AEM Communities documentation is in addition to:
There are now two "uber" artifacts that replace individual artifacts :
- AEM Communities API jar
- AEM Uber API jar
<dependency> <groupId>com.adobe.cq.social</groupId> <artifactId>cq-socialcommunities-api</artifactId> <version>1.11.170</version> <scope>provided</scope> </dependency>
The version specified should correspond to 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
- first version for AEM 6.3 is version 1.11.170
- feature packs will be versions 1.12.xxx
Note:
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.
<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>