I am having a trouble while building my java maven project in jenkins. In my project, there are few custom jars which I included in pom like this
     <dependency>
        <groupId>SMSGatewayClient</groupId>
        <artifactId>SMSGatewayClient</artifactId>
        <scope>system</scope>
        <version>1.0</version>
        <systemPath>${basedir}\lib\SMSGatewayClient.jar</systemPath>
    </dependency>
But jenkins throwing exception
"Could not find artifact SMSGatewayClient:SMSGatewayClient:jar:1.0 at specified path /var/lib/jenkins/workspace/DEV-metal-auc/MetalBusiness_mvn\lib\SMSGatewayClient.jar"
and build is stopped.
How can I use that custom jar so that jenkins builds successfully?
 
     
    