Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 7638a536cbae94b4727cb7e56e9e842c089a1f43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<project name="Eching" 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>
</project>

Back to the top