First of all I should state that I understand that typically with Maven this is not how you should do things...
What I am looking for is how you would deploy maven artifacts to a repository existing in the lib folder of your project. I know how to add a repository on my local filesystem to pom.xml like this...
<repositories>
<repository>
<id>lib-repo</id>
<name>lib-repository</name>
<url>file://${basedir}/lib</url>
<releases>
<checksumPolicy>ignore</checksumPolicy>
</releases>
</repository>
</repositories>
The confusing part is how I would get artifacts in to this "lib" folder. It's not as simply as dropping in files, I have the feeling I need to use the mvn install:install-file command somehow.