Versions Compared

Key

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

...

Should also be part of 

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

 

 Blueriq provides 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 an access token by e-mailing support (email support@blueriq.com).

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

 

Instructions
Copy the settings.xml below to your settings.xml and replace USERNAME and ENCRYPTED PASSWORD with the appropriate values. The ENCRYPTED PASSWORD is an encrypted version of your password that you can use in configuration files without exposing your actual password. If you only have a password, you can generate and encrypted password on the Artifactory Profile Page by entering your password and pressing unlock.

 

Code Block
languagexml
titlesettings.xml

...

Code Block
<?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>*** Insert username here ***<<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>