Skip to main content
summaryrefslogtreecommitdiffstats
blob: 97b49846101d9e7713283cb39ebb4ca7486fd7f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<project name="Echoing" default="echo1" basedir="..">

	<target name="echo1">
		<echo message="echo1"/>
	</target>
	
	<target name="echo2">
		<echo message="echo2"/>
	</target>
	
	<target name="echo3" description= "An echo3!">
		<echo message="echo3"/>
	</target>
	
	<target name="Bug42984">
		<echo message="user.dir: ${user.dir}"/>
	</target>
	
</project>

Back to the top