Versions Compared

Key

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

...

  1. Add a file named settings.xml to the maven folder (user_home/.m2/settings.xml) or if you already have it, add the missing configuration as follows:

    Paste code macro
    languagexml
    themeObsidian
    titlesettings.xml
    <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>
                <id>ol-3rd-party-libs</id>
                <username>public</username>
                <password>AP3UUPpoUv5HMRpNWwEXHKremER<<password>AKCp8oho7Ry3trcRKpongThJAFkmjf1LYV4vADAuDQS5VDcCZuHTBN826YVURXKiHsEzTG3AG</password>
            </server>
            <server>
                <id>openlegacy-m2</id>
                <username>public</username>
                <password>AP3UUPpoUv5HMRpNWwEXHKremER<<password>AKCp8oho7Ry3trcRKpongThJAFkmjf1LYV4vADAuDQS5VDcCZuHTBN826YVURXKiHsEzTG3AG</password>
            </server>
        </servers>
        <profiles>
            <profile>
                <id>def</id>
                <repositories>
                    <repository>
                        <id>openlegacy-m2</id>
                        <url>https://openlegacy.jfrog.io/openlegacy/ol-public</url>
                    </repository>
                    <repository>
                        <id>ol-3rd-party-libs</id>
                        <url>https://openlegacy.jfrog.io/openlegacy/ol-3rd-party-libs</url>
                    </repository>
                </repositories>
            </profile>
        </profiles>
        <activeProfiles>
            <activeProfile>def</activeProfile>
        </activeProfiles>
    </settings>


  2. Now our artifacts will be downloaded in Online mode.

...