How to import custom libraries through QAS?

To import custom libraries you have to define the dependency containing your custom library path in your pom.xml file. Refer the dependency code shared below:

Importing Custom Library
<dependencies>
   <dependency>
     <groupId>${group Id}</groupId>
     <artifactId>${artifact Id}</artifactId>
     <scope>system</scope>
     <version>${version}</version>
     <systemPath>${basedir}\src\lib\ldapjdk.jar</systemPath>
   </dependency>
 </dependencies>


For example, refer below screenshot. The custom library path needs to be provided in between the '<systemPath>' tags.