Link to home
Start Free TrialLog in
Avatar of bhomass
bhomass

asked on

<property environment="myenv" />

what does it mean when an ant build.xml has this property in it?
<property environment="myenv" />

is myenv the users OS or shell environment? such as path setting in Windows?
Avatar of avinthm
avinthm

Here myenv is an environment file (with file extension .env).
This file may contain environment settings like classpath of server, your code base path, java home etc etc.

This works only on few operating systems.
Avatar of bhomass

ASKER

which os does it work on. I am working on Windows, and there is no such file in the package.
ASKER CERTIFIED SOLUTION
Avatar of avinthm
avinthm

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of bhomass

ASKER

Thank you so much. I will try it out.