How to add jars to your Maven project
If you want to physically add jar files to your maven project, so they don’t have to be downloaded from a repository, you can use the system dependency scope, and point to a location in your project:
<dependency>
<groupId>com.missionmode</groupId>
<artifactId>missionmode-api</artifactId>
<version>3.6.51</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/MMAPI-3.6.51.jar</systemPath>
</dependency>
Categories: Maven3
dependency, jar, scope, system
Comments (0)
Trackbacks (0)
Leave a comment
Trackback