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 12 Next »

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 (support@blueriq.com).

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

Instructions

Copy the contents 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 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.

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>USERNAME</username>
            <password>ENCRYPTED PASSWORD</password>
            <id>blueriq-artifactory</id>
        </server>
    </servers>
    <profiles>
        <profile>
            <id>blueriq_artifactory</id>
            <repositories>
                <repository>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                    <id>blueriq-artifactory</id>
                    <name>libs-release</name>
                    <url>https://artifactory.blueriq.com/artifactory/libs-release</url>
                </repository>
                <repository>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                    <id>central</id>
                    <name>bintray</name>
                    <url>http://jcenter.bintray.com</url>
                </repository>
            </repositories>
            <pluginRepositories>
                <pluginRepository>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                    <id>blueriq-artifactory</id>
                    <name>plugins-release</name>
                    <url>https://artifactory.blueriq.com/artifactory/libs-release</url>
                </pluginRepository>
                <pluginRepository>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                    <id>central</id>
                    <name>bintray-plugins</name>
                    <url>http://jcenter.bintray.com</url>
                </pluginRepository>
            </pluginRepositories>
        </profile>
    </profiles>
    <activeProfiles>
        <activeProfile>blueriq_artifactory</activeProfile>
    </activeProfiles>
</settings>
  • No labels