root/tags/release-1.0.2/pustefix-tutorial/build.xml

Revision 3578, 0.8 KB (checked in by schst, 4 years ago)

Initial import of the skeleton for the tutorial application

Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE project PUBLIC "-//ANT//DTD project//EN" "ant.dtd">
3<!-- ant.dtd is generated by target dtd. This is not done automatically.
4If any problems arise either regenerate ant.dtd by invoking ant dtd
5or delete the DOCTYPE definition -->
6
7<project name="myproject" default="all" basedir=".">
8
9  <import file="build-skel.xml" optional="false"/>
10 
11  <target name="pre-compile" depends="skel.pre-compile">
12    <echo message="Extend the pre-compile target with your own definitions here..."/>
13  </target>
14
15  <target name="post-compile" depends="skel.post-compile">
16    <echo message="Extend the post-compile target with your own definitions here..."/>
17  </target>
18
19  <target name="clean" depends="skel.clean">
20    <echo message="Extend the clean target with your own definitions here..."/>
21  </target>
22
23</project>
Note: See TracBrowser for help on using the browser.