This article covers a Bloomreach Experience Manager version 11. There's an updated version available that covers our most recent release.

Hippo Maven Enterprise Repository Manual

This feature is only available in Hippo DX.

Your Account

Get BloomReach Experience developer accounts.

Browsing the Hippo Repositories

There is a web interface which makes all the artifacts browseable and searchable: Hippo Maven Repository ( https://maven.onehippo.com/). To browse the enterprise repository, log in with the credentials supplied to you. You can find the log in at the top right corner.

URLs

The repository address is:

Enterprise Maven 2 & 3

https://maven.onehippo.com/maven2-enterprise

To access the repository you will have to supply your username and password.

Configure you maven settings

You can add your account details to your personal Maven settings. On a Linux system, they can be found at ~/.m2/settings.xml. You need to add the section below or add the server to your already existing servers section. You need to replace the USERNAME and PASSWORD with the credentials supplied to you.

<servers>
  <server>
    <id>hippo-maven2-enterprise</id>
    <username>USERNAME</username>
    <password>PASSWORD</password>
  </server>
</servers>

Configure your project pom

To use the enterprise repository in your project you need to add the following section to your root pom.xml. Either add the complete section or add the repository to your existing list.

<repositories>
  <repository>
    <id>hippo-maven2-enterprise</id>
    <name>Hippo Enterprise Maven 2</name>
    <url>https://maven.onehippo.com/maven2-enterprise</url>
    <releases>
      <updatePolicy>never</updatePolicy>
      <checksumPolicy>fail</checksumPolicy>
    </releases>
  </repository>
</repositories>
Did you find this page helpful?
How could this documentation serve you better?
On this page
    Did you find this page helpful?
    How could this documentation serve you better?