Subversion Repositories bacoAlunos

Rev

Rev 272 | Rev 281 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 272 Rev 273
Line 142... Line 142...
142
    <target name="build" depends="initDirs" description="Compile All and create conf files">
142
    <target name="build" depends="initDirs" description="Compile All and create conf files">
143
        <antcall target="compile"/>
143
        <antcall target="compile"/>
144
        <antcall target="createConfigurationFiles"/>
144
        <antcall target="createConfigurationFiles"/>
145
    </target>
145
    </target>
146
    <target name="compile" depends="initDirs" description="Compile All">
146
    <target name="compile" depends="initDirs" description="Compile All">
147
        <javac encoding="UTF-8" source="1.5" target="1.5" destdir="${build.dir.classes}" debug="true" optimize="true" fork="true" deprecation="true" verbose="true" failonerror="true">
147
        <javac encoding="UTF-8" source="1.5" target="1.5" destdir="${build.dir.classes}" debug="false" optimize="true" fork="true" deprecation="false" verbose="false" failonerror="true">
148
            <src path="${src.dir}"/>
148
            <src path="${src.dir}"/>
149
            <src path="${gen.dir.java}"/>
149
            <src path="${gen.dir.java}"/>
150
            <classpath refid="pathToToolsLib"/>
150
            <classpath refid="pathToToolsLib"/>
151
        </javac>
151
        </javac>
152
    </target>
152
    </target>
Line 493... Line 493...
493
    <!--<target name="run">-->
493
    <!--<target name="run">-->
494
    <!--<java classname="mitra.oaiharvest.harvest.HarvestEngine" classpath="${build.dir.classes}" classpathref="pathToToolsLib"/>-->
494
    <!--<java classname="mitra.oaiharvest.harvest.HarvestEngine" classpath="${build.dir.classes}" classpathref="pathToToolsLib"/>-->
495
    <!--<java classname="mitra.oaiharvest.index.IndexEngine" classpath="${build.dir.classes}" classpathref="pathToToolsLib"/>-->
495
    <!--<java classname="mitra.oaiharvest.index.IndexEngine" classpath="${build.dir.classes}" classpathref="pathToToolsLib"/>-->
496
    <!--</target>-->
496
    <!--</target>-->
497
 
497
 
498
</project>
-
 
499
498
</project>
-
 
499