Here's a snapshot of how I do this:
<jar destfile="adasim-${version}-deps.jar" manifest="resources/MANIFEST.MF">
<fileset dir="${class.dir}"/>
<fileset dir=".">
<include name="resources/xml/adasim.xsd"/>
<include name="resources/VERSION"/>
</fileset>
<archives>
<zips>
<fileset dir="${lib.dir}" includes="**/*.jar" excludes="**/junit*.jar"/>
</zips>
</archives>
</jar>
you use <fileset> to select files that you want to copy into the JAR and you use <zips> combined with JARs to include that contents from JARs.
Extensive documentation can be found in the ant manual.