1

Due to my company's network policies, I am unable to use Maven to install Azure Java SDK. Is there any way at all to install Azure Java SDK without Maven?

Thanks

Namta
  • 11
  • 1

1 Answers1

0

You can use Gradle to install all dependencies you need . Details see here

If you want to install azure-java-sdk , you can find how to install it using Gradle under Gradle tag : enter image description here

copy it to here in your Gradle project:

enter image description here

refresh it and it will start download dependencies to your project : enter image description here

Hope it helps !

Community
  • 1
  • 1
Stanley Gong
  • 11,522
  • 1
  • 8
  • 16
  • Super :) that did the trick. This worked much better than Maven. I just had to re-build my project with 'gradlew build' and update my proxy settings ('gradle.properties' file). Thanks a lot. – Namta Dec 11 '19 at 00:36
  • Hi @Namta , Glad to know that my suggestion is helpful for you. Pls click on the check mark beside the answer to toggle it from greyed out to filled in to mark it as an answer so that it will help others who has similar issue and it will be an award for me. Thanks and have a nice day ! – Stanley Gong Dec 11 '19 at 01:16