update proxy setting usage

Former-commit-id: fd11b04a2a68619e9481e9d1341ef64b96dbf9d8
This commit is contained in:
ma wei
2015-05-15 11:39:52 +08:00
parent 8ddf4a0e72
commit 7f528d8d4a

View File

@@ -139,3 +139,20 @@ gradle dependencyCheck
The reports will be generated automatically under `./reports` folder.
If your project includes multiple sub-projects, the report will be generated for each sub-project in different sub-directory.
### What if you are behind a proxy?
Maybe you have to use proxy to access internet, in this case, you could configure proxy settings for this plugin:
```
dependencyCheck {
proxyServer = "127.0.0.1" // required, the server name or IP address of the proxy
proxyPort = 3128 // required, the port number of the proxy
// optional, the proxy server might require username
// proxyUsername = "username"
// optional, the proxy server might require password
// proxyPassword = "password"
}
```