Bloomreach Experience Manager Enterprise Maven Repository Manual
Your Account
Get Bloomreach Experience developer accounts.
Browsing the Bloomreach Experience Manager Maven Repositories
There is a web interface which makes all the artifacts browseable and searchable: Bloomreach Experience Manager Maven Repository. 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.bloomreach.com/repository/maven2-enterprise/ |
To access the repository you will have to supply your username and password.
Configure you Local Maven Settings
Update your local Maven settings. On a Unix-based system, these can be found at ~/.m2/settings.xml.
Please note that the repository IDs are different between brXM 16 (bloomreach-maven2- prefix) and brXM 14 & 15 (hippo-maven2- prefix).
Bloomreach Experience Manager 16
To the <servers> section, add a <server> entry with the id bloomreach-maven2-enterprise and your credentials (replace USERNAME and PASSWORD with the credentials provided to you):
<servers> <server> <id>bloomreach-maven2-enterprise</id> <username>USERNAME</username> <password>PASSWORD</password> </server> </servers>
To the default profile in the <profiles> section, add the details for the Bloomreach Experience Manager enterprise Maven repository as follows:
<profiles> <profile> <id>default</id> <activation> <activeByDefault>true</activeByDefault> </activation> <repositories> <repository> <id>bloomreach-maven2-enterprise</id> <name>Bloomreach Maven 2 Enterprise</name> <url>https://maven.bloomreach.com/repository/maven2-enterprise/</url> <releases> <updatePolicy>never</updatePolicy> <checksumPolicy>fail</checksumPolicy> </releases> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>bloomreach-maven2-enterprise</id> <name>Bloomreach Maven 2 Enterprise</name> <url>https://maven.bloomreach.com/repository/maven2-enterprise/</url> <snapshots> <enabled>false</enabled> </snapshots> <releases> <enabled>true</enabled> </releases> </pluginRepository> </pluginRepositories> </profile> </profiles>
Bloomreach Experience Manager 14 & 15
To the <servers> section, add a <server> entry with the id hippo-maven2-enterprise and your credentials (replace USERNAME and PASSWORD with the credentials provided to you):
<servers> <server> <id>hippo-maven2-enterprise</id> <username>USERNAME</username> <password>PASSWORD</password> </server> </servers>
To the default profile in the <profiles> section, add the details for the Bloomreach Experience Manager enterprise Maven repository as follows:
<profiles> <profile> <id>default</id> <activation> <activeByDefault>true</activeByDefault> </activation> <repositories> <repository> <id>hippo-maven2-enterprise</id> <name>Bloomreach Maven 2 Enterprise</name> <url>https://maven.bloomreach.com/repository/maven2-enterprise/</url> <releases> <updatePolicy>never</updatePolicy> <checksumPolicy>fail</checksumPolicy> </releases> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>hippo-maven2-enterprise</id> <name>Bloomreach Maven 2 Enterprise</name> <url>https://maven.bloomreach.com/repository/maven2-enterprise/</url> <snapshots> <enabled>false</enabled> </snapshots> <releases> <enabled>true</enabled> </releases> </pluginRepository> </pluginRepositories> </profile> </profiles>