This section assumes you are using Maven to manage your Hippo CMS project.
In the main pom.xml of the project, in the repositories section, add this repository if it is not configured there yet.
<repository> <id>hippo-forge</id> <name>Bloomreach Forge Maven 2 repository.</name> <url>https://maven.onehippo.com/maven2-forge/</url> </repository>
In the main pom.xml of the project, in the properties section, add this property. For the correct version number, check the Release Notes page.
<forge.externalresource.version>version.number</forge.externalresource.version>
Add the following dependencies to your CMS module's pom.xml file:
<dependency> <groupId>org.onehippo.forge</groupId> <artifactId>externalresource-addon-frontend</artifactId> <version>${forge.externalresource.version}</version> </dependency> <dependency> <groupId>org.onehippo.forge</groupId> <artifactId>externalresource-addon-repository</artifactId> <version>${forge.externalresource.version}</version> </dependency> <dependency> <groupId>org.onehippo.forge</groupId> <artifactId>externalresource-addon-reports</artifactId> <version>${forge.externalresource.version}</version> </dependency>