How to add local jar files to a Maven project?
You can add local dependencies directly (as mentioned in build maven project with propriatery libraries included) like this: <dependency> <groupId>com.sample</groupId> <artifactId>sample</artifactId> <version>1.0</version> <scope>system</scope> <systemPath>${project.basedir}/src/main/resources/Name_Your_JAR.jar</systemPath> </dependency> Update In new releases this feature is marked as deprecated but still working and not removed yet ( You just see warning in the log during maven start). An issue … Read more