Skip to main content
summaryrefslogtreecommitdiffstats
blob: 505a2bd67b26de325c7ebb161c82b0c570ec8f0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<project name="main" default="all">
    <taskdef resource="taskdefs.properties"/>
    <hello/>
    <target name="all">
        <echo>Hello</echo>
    </target>
	<target name="all3">
	        <echo>Hello</echo>
	    </target>
	<target name="all4">
	        <echo>Hello</echo>
	    </target>
</project>

Back to the top