You are viewing the documentation for Blueriq 17. Documentation for other versions is available in our documentation directory.

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

This is for  AQ-7500 - Getting issue details... STATUS

Should also be part of  AQ-7143 - Getting issue details... STATUS

 

 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 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.
settings.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>*** Insert username here ***</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>

  • No labels