bdd-security
bdd-security copied to clipboard
Facing this below issue.. I have everythin installed on my machine
Facing this below issue.. I have everythin installed on my machine
@sudheerr1987 this looks like an error downloading gradle from services.gradle.org. Maybe a transient issue on their server or on your network?
facing similar issue on my machine. please help
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