
Chapter 4. Java development and job management with Eclipse 59
application that is contained in the submit.jar file. This Java application
performs submitting jobs via FTP and also retrieves the JES output.
6. Retrieve output via FTP.
See 5.)
7. Debug the application.
For debugging, see 4.4, “Debugging” on page 67.
Example 4-3 The deploy.xml file
<project name="deploy" default="all">
<property file="${user.home}/zos.properties"/>
<property file="../zos.properties" />
<property file="./zos.properties" />
<target name="all" depends="compile, deployJar, deployJcl, submit"
/>
<!-- for compiling if not done automatically by IDE (Eclipse) -->
<target name="co ...