Maven 2 is driving me crazy during the experimentation / quick and dirty mock-up phase of development.
I have a pom.xml file that defines the dependencies for the web-app application framework I want to use, and I can quickly generate starter projects from that file.
However, sometimes I want to link to a third-party library that doesn't already have a pom.xml file defined, so rather than create the pom.xml file for the third-party library by hand and install it, and add the dependency to my pom.xml file, I would just like to tell Maven: "In addition to my defined dependencies, include any JAR files that are in /lib too."
It seems like this ought to be simple, but if it is, I am missing something.
Any pointers on how to do this are greatly appreciated. Short of that, if there is a simple way to point Apache Maven_Maven to a /lib directory and easily create a pom.xml with all the enclosed JAR files mapped to a single dependency which I could then name / install and link to in one fell swoop would also suffice.