Archive
Posts Tagged ‘User Lib’
[How to] Add jar to mvn dependency without installing
October 23, 2011
Leave a comment
<dependency>
<groupId>groupId here</groupId>
<artifactId>artifactId here</artifactId>
<version>version here</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/my_lib-1.0-SNAPSHOT.jar</systemPath>
</dependency>