You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by "Sadek, Fahim" <fs...@lehman.COM> on 2001/03/13 23:15:08 UTC

unix CLASSPATH

Hi,

Was wandering how you can echo the unix CLASSPATH from ant. There's nothing
much in the doc that seems to do the job.

Thanks.

Re: unix CLASSPATH

Posted by Shireesh Thanneru <th...@ece.villanova.edu>.
On Tue, 13 Mar 2001, Sadek, Fahim wrote:

>Was wandering how you can echo the unix CLASSPATH from ant. There's nothing
>much in the doc that seems to do the job.

Use this:

  <target name="printcp">
    <echo message="${java.class.path}"/>
  </target>

Shireesh Thanneru