Fork me on GitHub

How to install the XM Utilities modules

Maven 2 Forge Repository

Add this repository to your root pom.xml:

  <repository>
    <id>hippo-forge</id>
    <name>Bloomreach Forge maven 2 repository.</name>
    <url>http://maven.onehippo.com/maven2-forge/</url>
    <snapshots>
      <enabled>false</enabled>
    </snapshots>
    <releases>
      <updatePolicy>never</updatePolicy>
    </releases>
    <layout>default</layout>
  </repository>

Add version property to the project pom

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.utilities.version>version.number</forge.utilities.version>
        

Installation of HST module

Add this dependency to the pom.xml of your site module:

<dependency>
  <groupId>org.onehippo.forge.utilities</groupId>
  <artifactId>hippo-utilities-hst</artifactId>
  <version>${forge.utilities.version}</version>
</dependency>

Installation of Repository module (since v3.1.0)

Add this dependency to the pom.xml of your cms module:

<dependency>
  <groupId>org.onehippo.forge.utilities</groupId>
  <artifactId>hippo-utilities-repository</artifactId>
  <version>${forge.utilities.version}</version>
</dependency>