Looks like I deleted or misplaced my hacked-up test, but the core of
the Ant task was about this:
<jar destfile="out.jar">
<manifest>
<attribute name="Main-Class" value="your.job.class.Job"/>
</manifest>
<zipfileset dir="classes"/> <!-- include individual .class files -->
<zipfileset src="one.jar"/> <!-- include a .jar file contents -->
...
</jar>
(This can be done without Ant, of course. And the Ant bit can be
linked into Maven.)
On Tue, May 19, 2009 at 3:37 AM, Jeff Eastman
<[email protected]> wrote:
> I reached a similar conclusion. Do you think we should modify the examples
> build to do that? Can you share the ant script you used?