Checkout our demo site to practice selenium https://magento.softwaretestingboard.com/

0 like 0 dislike
185 views
in Others by The go-to Tester (181 points)
I have few custom Jar files. How to include custom library into maven local repository?

1 Answer

0 like 0 dislike
by The go-to Tester (181 points)
selected by
 
Best answer
This is what you should be doing inside dependencies section.

 

<dependency>
            <groupId>com.company</groupId>
            <artifactId>package</artifactId>
            <version>1.0.0</version>
            <scope>system</scope>
            <systemPath>${basedir}/path/to/jarfile.jar</systemPath>
        </dependency>

Hope it helps.


This site is for software testing professionals, where you can ask all your questions and get answers from 1300+ masters of the profession. Click here to submit yours now!

1.4k questions

1.6k answers

866 comments

1.9k users

...