* Update hdinsight.md

* Update hdinsight.md
This commit is contained in:
Tyler Fox 2019-04-16 23:46:07 -07:00 коммит произвёл Bruno Borges
Родитель 1b01996ec4
Коммит d5e839b962
1 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -7,7 +7,7 @@ ms.reviewer: jasonh
ms.service: hdinsight
ms.topic: reference
ms.devlang: java
ms.date: 04/10/2019
ms.date: 04/15/2019
---
# HDInsight SDK for Java
@ -24,7 +24,7 @@ The HDInsight SDK for Java provides classes and methods that allow you to manage
## SDK Installation
The HDInsight SDK for Java is available through Maven [here](https://mvnrepository.com/artifact/com.microsoft.azure.hdinsight.v2018_06_01_preview/azure-mgmt-hdinsight). Add the following dependency to your pom.xml:
The HDInsight SDK for Java is available through Maven [here](https://search.maven.org/artifact/com.microsoft.azure.hdinsight.v2018_06_01_preview/azure-mgmt-hdinsight). Add the following dependency to your pom.xml:
```
<dependency>
@ -36,21 +36,21 @@ The HDInsight SDK for Java is available through Maven [here](https://mvnreposito
You will also need to add the following dependencies to your pom.xml:
* [Azure Client Authentication Library:](https://mvnrepository.com/artifact/com.microsoft.azure/azure-client-authentication/1.6.2)
* [Azure Client Authentication Library:](https://search.maven.org/artifact/com.microsoft.azure/azure-client-authentication)
```
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-client-authentication</artifactId>
<version>1.6.2</version>
<version>1.6.5</version>
</dependency>
```
* [Azure Java Client Runtime For ARM:](https://mvnrepository.com/artifact/com.microsoft.azure/azure-arm-client-runtime/1.6.2)
* [Azure Java Client Runtime For ARM:](https://search.maven.org/artifact/com.microsoft.azure/azure-arm-client-runtime)
```
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-client-runtime</artifactId>
<version>1.6.2</version>
<version>1.6.5</version>
</dependency>
```