These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: Hibernate Tools src download available?
PostPosted: Wed Apr 01, 2009 6:11 pm 
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.


Top
  
 
 Post subject:
PostPosted: Thu Apr 02, 2009 1:03 am 
Beginner
Beginner

Joined: Wed Jan 25, 2006 10:18 am
Posts: 28
You could check the svn repo:

http://anonsvn.jboss.org/repos/hibernat ... lTask.java


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.