Skip to main content
summaryrefslogtreecommitdiffstats
blob: 947a6c7b3a8efa8c2c4d9b5385b66e09d9f996b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0"?>

<project default="main" basedir=".">

<echo message="pulling in property files"/>
<property file="axisservice.properties"/>
	
<echo message="calling the web services generation ant task: wsgen"/>
 <target name="main" >
  	 <wsgen/>
  </target>
  
</project>

Back to the top