There is no Hibernate Tools src download available here: 
http://www.hibernate.org/6.html
or here:
http://www.hibernate.org/268.html
I have this build.xml snippet from HelloWorld native project:
Code:
<!-- Hibernate Tools import -->
    <taskdef name="hibernatetool"
             classname="org.hibernate.tool.ant.HibernateToolTask"
             classpathref="project.classpath"/>
    <!-- Export the database schema -->
    <target name="schemaexport" depends="compile, copymetafiles"
        description="Exports a generated schema to DB and file">
        <hibernatetool destdir="${basedir}">
            <classpath path="${build.dir}"/>
            <configuration
                configurationfile="${build.dir}/hibernate.cfg.xml"/>
            <hbm2ddl
                drop="true"
                create="true"
                export="true"
                outputfilename="${proj.shortname}-ddl.sql"
                delimiter=";"
                format="true"/>
        </hibernatetool>
    </target>
So for example I'd like to see the source code for this class:
org.hibernate.tool.ant.HibernateToolTask
thx.