You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2019/08/04 15:48:58 UTC

[jmeter] branch master updated: Describe usage of gradle properties for proxy settings

This is an automated email from the ASF dual-hosted git repository.

fschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git


The following commit(s) were added to refs/heads/master by this push:
     new 7556991  Describe usage of gradle properties for proxy settings
7556991 is described below

commit 7556991464f6e5aa214889fbf22be00e8d929083
Author: Felix Schumacher <fe...@internetallee.de>
AuthorDate: Sun Aug 4 17:48:41 2019 +0200

    Describe usage of gradle properties for proxy settings
---
 README.md | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
index a0f0a25..83e98d7 100644
--- a/README.md
+++ b/README.md
@@ -140,14 +140,17 @@ but won't be used at run-time.
 _This is useful for testing what happens if the optional jars are not
 downloaded by other JMeter users._
 
-If you are behind a proxy, you can set a few build properties in `build-local.properties` for ant to use the proxy:
+If you are behind a proxy, you can set a few build properties in `~/.gradle/gradle.properties` for gradle to use the proxy:
 
 ```properties
-proxy.use=true
-proxy.host=proxy.example.invalid
-proxy.port=8080
-proxy.user=your_user_name
-proxy.pass=your_password
+systemProp.http.proxyHost=proxy.example.invalid
+systemProp.http.proxyPort=8080
+systemProp.http.proxyUser=your_user_name
+systemProp.http.proxyPassword=your_password
+systemProp.https.proxyHost=proxy.example.invalid
+systemProp.https.proxyPort=8080
+systemProp.https.proxyUser=your_user_name
+systemProp.https.proxyPassword=your_password
 ```
 
 You might also want to skip some tests - that are failing without proper access to the internet - by adding some more