Install the API Agent Channel Add-on
Bloomreach offers Enterprise support for this feature to Bloomreach Experience customers. The release cycle of this feature may differ from our core product release cycle.
Prerequisites
To be able to use the API Agent Channel Add-on, your implementation project must be set up as a Bloomreach Experience Manager project.
Instructions
Add Maven Dependency
In the root pom.xml of your project, add the following. For the correct version number for your project, check the Release Notes page.
<properties> <!-- SNIP --> <hippo-addon-api-agent-channel.version>version-number</hippo-addon-api-agent-channel.version> <!-- SNIP --> </properties> <!-- SNIP --> <dependencyManagement> <dependencies> <!-- SNIP --> <dependency> <groupId>com.onehippo.cms7</groupId> <artifactId>hippo-addon-api-agent-channel-delegates</artifactId> <version>${hippo-addon-api-agent-channel.version}</version> </dependency> <dependency> <groupId>com.onehippo.cms7</groupId> <artifactId>hippo-addon-api-agent-channel-repository</artifactId> <version>${hippo-addon-api-agent-channel.version}</version> </dependency> <!-- SNIP --> </dependencies> </dependencyManagement>
In the cms module of your project, add the following dependency in the pom.xml:
<dependency> <groupId>com.onehippo.cms7</groupId> <artifactId>hippo-addon-api-agent-channel-repository</artifactId> </dependency>
In the site module of your project, add the following dependency in the pom.xml:
<dependency> <groupId>com.onehippo.cms7</groupId> <artifactId>hippo-addon-api-agent-channel-delegates</artifactId> </dependency>
After rebuilding the project and restarting the server, you will be able to use the API Agent Channel add-on right way.