Install Maven and Add Pricefx Repository

  1. Install Apache Maven, version 3.5.3+. You can use their Installation Manual. Install into a folder with a short name without spaces, e.g. C:\java\maven. 

  2. Check if the instance is working and if Maven is on PATH.

    > mvn -version Apache Maven 3.3.3 Maven home: /usr/share/maven Java version: 1.8.0_111, vendor: Oracle Corporation Java home: /usr/lib/jvm/java-8-oracle/jre Default locale: en_US, platform encoding: UTF-8 OS name: "linux", version: "4.2.0-27-generic", arch: "amd64", family: "unix"

     

  3. Locate your settings.xml in your Maven repository. The typical location is:

    windows: %USERPROFILE%\.m2\settings.xml unix: ~/.m2/settings.xml

     

  4. Add the following information into the settings:

    • PFX employee

      <repository> <id>Pricefx maven artifacts</id> <url>https://maven.pricefx.eu</url> <snapshots> <enabled>true</enabled> </snapshots> <releases> <enabled>true</enabled> </releases> </repository>

       

       

       

    • Partner

       

       

       

See an example of Maven settings file (used for Pricefx employees):


For Maven access you need to contact IT support via a helpdesk ticket.

IntegrationManager version 5.8.0