-
Notifications
You must be signed in to change notification settings - Fork 435
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What is up with the Azure dependency? #227
Comments
@lukecapizano, the Azure Key Vault dependencies were removed and made optional in our 6.1.4 preview release with PR #146. The manual download you see on the MS Download Center is for an older version of the JDBC driver (version 6.0). |
@ajlam Oh, thanks for the explanation. Since the Azure Key Vault dependencies are optional, I'm assuming I can exclude the azure dependencies and still use all of the standard JDBC features available against a local SQL Server? Gradle example:
|
@lukecapizano "com.microsoft.azure" covers the Azure Key Vault and Azure Active Directory for Java dependencies. These dependencies are used in the following scenarios:
If you're connecting to your local SQL Server, standard JDBC features should be unaffected when excluding that group. |
<dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-keyvault</artifactId> <version>0.9.3</version> </dependency>
My deployment ends up with dozens of extra .jars (almost 10MB worth) because of this. This manual download doesn't contain these dependencies... why is this in the .pom?
The text was updated successfully, but these errors were encountered: