Hippo Maven Enterprise Repository Manual
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 |
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>