Subversion Repositories bacoAlunos

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2007 es 1
<?xml version="1.0"?>
2
<project name="Hibernate-LIBS" basedir=".">
3
 
4
 
5
        <property file="build.properties"/>
6
 
7
        <path id="pathref">
8
                <fileset dir="${tomcat.common.lib}">
9
                        <include name="*.jar" />
10
                </fileset>
11
                <fileset dir="${tomcat.server.lib}">
12
                        <include name="*.jar" />
13
                </fileset>
14
                <fileset dir="lib/hibernate/hibernate3">
15
                        <include name="*.jar" />
16
                </fileset>
17
                <fileset dir="lib/log4j">
18
                        <include name="*.jar" />
19
                </fileset>
20
                <fileset dir="lib/hibernate/mysql">
21
                        <include name="*.jar" />
22
                </fileset>
23
                <fileset dir="lib/dom4j">
24
                        <include name="*.jar" />
25
                </fileset>
26
                <fileset dir="lib/commons">
27
                        <include name="*.jar" />
28
                </fileset>
29
                <fileset dir="lib/aspectj">
30
                        <include name="*.jar" />
31
                </fileset>
32
        <fileset dir="lib/struts">
33
            <include name="*.jar" />
34
        </fileset>
35
        </path>
36
 
37
    <taskdef name="hibernatetool"
38
 
39
    classname="org.hibernate.tool.ant.HibernateToolTask"
40
    classpathref="pathref" classpath="${build.dir.classes}"/>
41
 
42
   <taskdef name="schemaupdate"
43
    classname="org.hibernate.tool.hbm2ddl.SchemaUpdateTask"
44
    classpathref="pathref" classpath="${build.dir.classes}"/>
45
 
46
        <!--<taskdef name="tomcat.deploy" classname="org.apache.catalina.ant.DeployTask"  classpathref="pathref" />-->
47
        <!--<taskdef name="tomcat.undeploy" classname="org.apache.catalina.ant.UndeployTask"  classpathref="pathref" />-->
48
        <!--<taskdef name="tomcat.reload" classname="org.apache.catalina.ant.ReloadTask"  classpathref="pathref" />-->
49
        <!--<taskdef name="tomcat.start" classname="org.apache.catalina.ant.StartTask"  classpathref="pathref" />-->
50
        <!--<taskdef name="tomcat.stop" classname="org.apache.catalina.ant.StopTask"  classpathref="pathref" />-->
51
    <!--<taskdef name="tomcat.install" classname="org.apache.catalina.ant.InstallTask" classpathref="pathref"/>-->
52
 
53
    <!--&lt;!&ndash;-->
54
    <!--<property name="user" value="${tomcat.user}"/>-->
55
        <!--<property name="pass" value="${tomcat.pass}"/>-->
56
        <!--&ndash;&gt;-->
57
        <!--<property name="user" value="admin"/>-->
58
        <!--<property name="pass" value="admin"/>-->
59
        <!---->
60
 
61
    <!--<target name="tomcat.deployContext" depends="build.war">-->
62
        <!--<echo message="${tomcat.manager} username: ${user} password: ${pass}"/>-->
63
        <!--<tomcat.install url="${tomcat.manager}" path="${tomcat.context.path.install}"-->
64
                        <!--config="file://${basedir}/build/ant/project.xml"-->
65
                        <!--username="${user}" password="${pass}" />-->
66
    <!--</target>-->
67
    <!--<target name="tomcat.redeployContext" depends="tomcat.undeploy,build.war" >-->
68
        <!--<echo message="${tomcat.manager}"/>-->
69
        <!--<tomcat.install url="${tomcat.manager}" path="${tomcat.context.path.install}"-->
70
                        <!--config="file:/${basedir}/build/ant/project.xml"-->
71
                        <!--username="${user}" password="${pass}" />-->
72
    <!--</target>-->
73
   <!---->
74
    <!--<target name="tomcat.deploy" depends="build.war" >-->
75
        <!--<echo message="${tomcat.manager}"/>-->
76
        <!--<tomcat.deploy url="${tomcat.manager}" path="${tomcat.context.path.install}"-->
77
                       <!--war="file:/${basedir}/build/ant/${tomcat.war.filename}"-->
78
                       <!--username="${user}" password="${pass}" />-->
79
    <!--</target>-->
80
    <!--<target name="tomcat.redeploy" depends="tomcat.undeploy,build.war">-->
81
        <!--<echo message="${tomcat.manager}"/>-->
82
        <!--<tomcat.deploy url="${tomcat.manager}" path="${tomcat.context.path.install}"-->
83
                       <!--war="file:/${basedir}/build/ant/${tomcat.war.file}"-->
84
                       <!--username="${user}" password="${pass}" />-->
85
    <!--</target>-->
86
    <!--<target name="tomcat.undeploy">-->
87
        <!--<echo message="${tomcat.manager}"/>-->
88
        <!--<tomcat.undeploy url="${tomcat.manager}" path="${tomcat.context.path.install}"-->
89
                         <!--username="${user}" password="${pass}" />-->
90
    <!--</target>-->
91
    <!--<target name="tomcat.reload">-->
92
        <!--<echo message="${tomcat.manager}"/>-->
93
        <!--<tomcat.reload url="${tomcat.manager}" path="${tomcat.context.path.install}"-->
94
                       <!--username="${user}" password="${pass}" />-->
95
    <!--</target>-->
96
    <!--<target name="tomcat.start">-->
97
        <!--<echo message="${tomcat.manager}"/>-->
98
        <!--<tomcat.start url="${tomcat.manager}" path="${tomcat.context.path.install}"-->
99
                      <!--username="${user}" password="${pass}" />-->
100
    <!--</target>-->
101
    <!--<target name="tomcat.stop">-->
102
        <!--<echo message="${tomcat.manager}"/>-->
103
        <!--<tomcat.stop url="${tomcat.manager}" path="${tomcat.context.path.install}"-->
104
                     <!--username="${user}" password="${pass}" />-->
105
    <!--</target>-->
106
 
107
 
108
</project>