Create an Eclipse project which contains all the JARs and an ANT build.xml
which calls mvn file:install
for each JAR to install then in your local Maven repository (see the docs for options of mvn file:install
).
That way, you can use these JARs like any other Maven dependency after running the build.xml
once.
[EDIT] A sample target would look like this:
<target name="maven-file-install">
<exec executable="mvn"> <!-- Make sure mvn is in the PATH -->
<arg value="file:install"/>
<arg value="-Dfile=your-artifact-1.0.jar"/>
... all the other arguments of file:install ...
</exec>
</target>