Maven: How to include jars, which are not available in reps into a J2EE project?
For people wanting a quick solution to this problem: <dependency> <groupId>LIB_NAME</groupId> <artifactId>LIB_NAME</artifactId> <version>1.0.0</version> <scope>system</scope> <systemPath>${basedir}/WebContent/WEB-INF/lib/YOUR_LIB.jar</systemPath> </dependency> just give your library a unique groupID and artifact name and point to where it is in the file system. You are good to go. Of course this is a dirty quick fix that will ONLY work on your … Read more