Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This is for 

Jira
serverBlueriq JIRA
serverId0041244a-fbd0-37c8-b035-75d3b6eee3d1
keyAQ-7500

Should also be part of 

Jira
serverBlueriq JIRA
serverId0041244a-fbd0-37c8-b035-75d3b6eee3d1
keyAQ-7143

 

Blueriq provides an Artifactory containing Blueriq artifacts which are updated every releases. A customer can use this Artifactory in its automated build process to use the latest Blueriq artifacts. Customers can request access by e-mailing support (email support@blueriq.com).

If you have access to the Blueriq Artifactory you need to configure your Maven settings.xml. This is file is located in the .m2 maven Maven home folder, which is usually located in the user home folder. at <user home folder>\.m2.

Instructions

Copy the settings.xml contents below to your settings.xml and replace USERNAME and ENCRYPTED PASSWORD with the appropriate values.

UI Text Box
typenote

The ENCRYPTED PASSWORD is an encrypted version of your password that you can use in configuration files without exposing your actual password. If you

...

do not have

...

an encrypted password, you can generate

...

it by logging in to the Artifactory and going to your Profile Page

...

. There you can enter your password and

...

press unlock to generate the encrypted password.

...

Code Block
languagexml
titlesettings.xml
<?xml version="1.0" encoding="UTF-8"?>
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.1.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <servers>
    <server>
      <username>USERNAME</username>
      <password>*** Insert encrypted password here ***</password>
      <id>blueriq</id>
    </server>
  </servers>
  <profiles>
    <profile>
      <repositories>
        <repository>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
          <id>blueriq</id>
          <name>libs-release</name>
          <url>https://artifactory.blueriq.com/artifactory/libs-release</url>
        </repository>
      </repositories>
      <id>artifactory</id>
    </profile>
  </profiles>
  <activeProfiles>
    <activeProfile>artifactory</activeProfile>
  </activeProfiles>
</settings>