ME 2017 on Windows 7.
I created a Maven project which depends on a jar file (test.jar) to run. So in the pom.xml I added
<dependency>
<groupId>test</groupId>
<artifactId>test</artifactId>
<scope>test</scope>
</dependency>
Where and how should I add the test.jar file to the Maven project, so that later in the compiling process, the Maven can download the jar automatically and put it into its (Maven) local repository?
Thanks.
Eugene