-
Notifications
You must be signed in to change notification settings - Fork 2
/
hsql.xml
28 lines (22 loc) · 895 Bytes
/
hsql.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>
<project name="HSQLDB" default="runServer" basedir=".">
<description>Helps starting up the HSQLDB demo database.</description>
<path id="hsql-classpath">
<fileset dir="lib">
<include name="**/*.jar"/>
</fileset>
</path>
<taskdef name="hibernatetool"
classname="org.hibernate.tool.ant.HibernateToolTask"
classpathref="hsql-classpath" />
<hibernatetool destdir=".">
<annotationconfiguration configurationfile="hibernate.cfg.xml"/>
<hbm2ddl export="false" outputfilename="jSwitch-FASTSJ-Postgre.sql"/>
<hbm2doc/>
</hibernatetool>
<target name="runServer" description="Launches the HSQLDB database server.">
<!--java classname="org.hsqldb.Server" fork="true">
<classpath refid="hsql-classpath"/>
</java-->
</target>
</project>