iriusrisk / bdd-security

BDD Automated Security Tests for Web Applications
http://www.continuumsecurity.net/bdd-intro.html
GNU Affero General Public License v3.0
559 stars 178 forks source link

Facing this below issue.. I have everythin installed on my machine #54

Open sudheerr1987 opened 7 years ago

sudheerr1987 commented 7 years ago

Facing this below issue.. I have everythin installed on my machine

image

iriusrisk commented 7 years ago

@sudheerr1987 this looks like an error downloading gradle from services.gradle.org. Maybe a transient issue on their server or on your network?

kkorada commented 7 years ago

facing similar issue on my machine. please help image

securitysushi commented 7 years ago

If you're behind a (corporate) proxy, you need to change the command to

./gradlew -Dcucumber.options="--tags @authentication --tags ~@skip" -Dhttps.proxyHost=proxy.example.com -Dhttps.proxyPort=12345

This way Java knows how to use the proxy.

If this doesn't work try setting the environment variable https_proxy additionally.

Windows: set https_proxy=https://proxy.example.com:12345

Bash/cygwin (to persist, put it in ~/.bashrc): export https_proxy=https://proxy.example.com:12345