From 01cd62036e33d99e98a2d0a039d8aa8f1246a2ed Mon Sep 17 00:00:00 2001 From: Steve Loughran Date: Fri, 12 Aug 2005 14:25:09 +0000 Subject: [PATCH] documenting proxy setup git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278515 13f79535-47bb-0310-9956-ffa450edef68 --- fetch.xml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/fetch.xml b/fetch.xml index 4173c5e36..b79a353de 100644 --- a/fetch.xml +++ b/fetch.xml @@ -23,7 +23,16 @@ You may also need to set proxy settings. This can be done by setting the JVM proxy values in the ANT_OPTS environment variables. - + + For example, to set the proxy up in the tcsh shell, the command would be + something like: + + For csh/tcsh: + setenv ANT_OPTS "-Dhttp.proxyHost=proxy -Dhttp.proxyPort=8080" + For bash: + export ANT_OPTS="-Dhttp.proxyHost=proxy -Dhttp.proxyPort=8080" + For Windows, set the environment variable in the appropriate dialog box + and open a new console.