Software Links
Getting Started
- A Globus Primer
- Globus Is Modular!
- Quickstart
- Installing GT
- Platform Notes
- GT Developer's Guide
- GT User's Guide
- Migrating Guides
Reference
Manuals
Common Runtime
Security
- GSI C
- GSI Java
- Java WS A&A
- C WS A&A (coming soon)
- CAS
- Delegation Service
- MyProxy
- GSI-OpenSSH
- SimpleCA
Data Mgt
WS MDS
Execution Mgt
Table of Contents
The wsrf/build.xml Ant script can be used generate Java WS Core
source and/or binary distributions. Use the following syntax to create the
distributions:
ant <distTask> -Dsrc.tag=<tag>
-Dversion=<version>The <distTask> must be one of:
distSource- create source code only distributiondistBinary- create binary only distributiondist- create source and binary distributions
The -Dsrc.tag specifies the CVS tag and
-Dversion specifies the version of the code. Make sure to
execute this Ant script from within the wsrf/ directory. Each of these
tasks checks out the source code from the CVS and uses it to create the
distributions.
Source-only example:
ant distSource -Dsrc.tag=globus_4_0_3 -Dversion=4.0.3
The
above command will create ws-core-<version>-src.zip and ws-core-<version>-src.tar.gz files under the wsrf/
directory.
Binary-only example:
ant distBinary -Dsrc.tag=globus_4_0_3 -Dversion=4.0.3
The
above command will create ws-core-<version>-bin.zip and ws-core-<version>-bin.tar.gz files under the tmp/ws-core-<version>/ directory.
Source and binary example:
ant dist -Dsrc.tag=globus_4_0_3 -Dversion=4.0.3
The above command will generate both distributions at the same time.