Prerequisites for Maven-based projects

For Maven-based projects you must install the UFT Developer JARs in the Maven repository (your organization's or local).

Install the UFT Developer JARs in the Maven repository

Make sure that you install the JAR files using the POM files that we supply. This ensures that the GAV and all dependencies for each UFT Developer JAR are defined correctly. Otherwise, when you run your tests, second-level-dependency files will be missing, and you will see NoClassDefFoundError messages, indicating missing files such as com/hp/lft/common/logging/Logger.

Follow these instructions to install the UFT Developer JARs. For a list of files names to install, as well as examples, see the sections below.

  • To install the UFT Developer jars to your organization's repository, run the following command:

    mvn deploy:deploy-file

    -DpomFile=<path-to-pom>

    -Dfile=<path-to-file>

    -DrepositoryId=<id-to-map-on-server-section-of-settings.xml>

    -Durl=<url-of-the-repository-to-deploy>

  • To install the UFT Developer jars to your local repository, run the following command:

    mvn install:install-file

    -Dfile=<path-to-file>

    -DpomFile=<path-to-pomfile>

Back to top

JAR and POM list

The path to the JARs and POMs is:

  • Windows: <UFT Developer Installation>\SDK\Maven
  • Linux/Mac: <UFT Developer Installation>/sdk/Maven/

Expand the relevant link to see installation information relevant to your UFT Developer version:

Back to top

Examples

The following examples shows how to install the UFT Developer JARs in your local Maven repository. Run the following commands from <UFT Developer Installation>\SDK\Maven (on Windows) or <UFT Developer Installation>/sdk/Maven/ (on Linux/Mac).

Back to top