Forum Discussion
ddellsperger
2 years agoAdmin
if your directory structure looks like this:
snappack
├── lib
│ └── commons-logging-1.0.4.jar
├── src
│ └── main
│ ├── java
│ │ └── ...source files
│ └── resources
└── pom.xml
Then, you would need to specify:
<library.path>${project.basedir}/../lib</library.path>
as the project.basedir points to your src directory.