Skip to content

Commit 8e92887

Browse files
authored
Fix PR errors
1 parent 0e2508f commit 8e92887

File tree

4 files changed

+42
-40
lines changed

4 files changed

+42
-40
lines changed

articles/azure-cache-for-redis/cache-java-get-started.md

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -53,29 +53,31 @@ Using Maven, generate a new quickstart app:
5353
1. Open the *pom.xml* file. In the file, you see a dependency for [Jedis](https://github.com/xetorthio/jedis):
5454

5555
### [Microsoft Entra ID Authentication (recommended)](#tab/entraid)
56-
```xml
57-
<dependency>
58-
<groupId>com.azure</groupId>
59-
<artifactId>azure-identity</artifactId>
60-
<version>1.11.2</version> <!-- {x-version-update;com.azure:azure-identity;dependency} -->
61-
</dependency>
62-
63-
<dependency>
64-
<groupId>redis.clients</groupId>
65-
<artifactId>jedis</artifactId>
66-
<version>5.1.0</version> <!-- {x-version-update;redis.clients:jedis;external_dependency} -->
67-
</dependency>
68-
```
56+
57+
```xml
58+
<dependency>
59+
<groupId>com.azure</groupId>
60+
<artifactId>azure-identity</artifactId>
61+
<version>1.11.2</version> <!-- {x-version-update;com.azure:azure-identity;dependency} -->
62+
</dependency>
63+
64+
<dependency>
65+
<groupId>redis.clients</groupId>
66+
<artifactId>jedis</artifactId>
67+
<version>5.1.0</version> <!-- {x-version-update;redis.clients:jedis;external_dependency} -->
68+
</dependency>
69+
```
6970

7071

7172
### [Access Key Authentication](#tab/accesskey)
72-
```xml
73-
<dependency>
74-
<groupId>redis.clients</groupId>
75-
<artifactId>jedis</artifactId>
76-
<version>5.1.0</version> <!-- {x-version-update;redis.clients:jedis;external_dependency} -->
77-
</dependency>
78-
```
73+
74+
```xml
75+
<dependency>
76+
<groupId>redis.clients</groupId>
77+
<artifactId>jedis</artifactId>
78+
<version>5.1.0</version> <!-- {x-version-update;redis.clients:jedis;external_dependency} -->
79+
</dependency>
80+
```
7981

8082
---
8183

articles/azure-cache-for-redis/cache-java-redisson-get-started.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -58,29 +58,29 @@ Open the *pom.xml* file and add a dependency for [Redisson](https://github.com/r
5858

5959
### [Microsoft Entra ID Authentication (recommended)](#tab/entraid)
6060

61-
```xml
62-
<dependency>
63-
<groupId>com.azure</groupId>
64-
<artifactId>azure-identity</artifactId>
65-
<version>1.11.2</version> <!-- {x-version-update;com.azure:azure-identity;dependency} -->
66-
</dependency>
67-
68-
<dependency>
69-
<groupId>org.redisson</groupId>
70-
<artifactId>redisson</artifactId>
71-
<version>3.27.0</version> <!-- {x-version-update;org.redisson:redisson;external_dependency} -->
72-
</dependency>
73-
```
61+
```xml
62+
<dependency>
63+
<groupId>com.azure</groupId>
64+
<artifactId>azure-identity</artifactId>
65+
<version>1.11.2</version> <!-- {x-version-update;com.azure:azure-identity;dependency} -->
66+
</dependency>
67+
68+
<dependency>
69+
<groupId>org.redisson</groupId>
70+
<artifactId>redisson</artifactId>
71+
<version>3.27.0</version> <!-- {x-version-update;org.redisson:redisson;external_dependency} -->
72+
</dependency>
73+
```
7474

7575

7676
### [Access Key Authentication](#tab/accesskey)
7777

78-
```xml
79-
<dependency>
80-
<groupId>org.redisson</groupId>
81-
<artifactId>redisson</artifactId>
82-
<version>3.27.0</version> <!-- {x-version-update;org.redisson:redisson;external_dependency} -->
83-
</dependency>
78+
```xml
79+
<dependency>
80+
<groupId>org.redisson</groupId>
81+
<artifactId>redisson</artifactId>
82+
<version>3.27.0</version> <!-- {x-version-update;org.redisson:redisson;external_dependency} -->
83+
</dependency>
8484
```
8585

8686
---

articles/azure-cache-for-redis/includes/redis-setup-working-environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Replace the placeholders with the following values:
2323
1. On the navigation pane, select **Data Access Configuration**.
2424
1. On the **Redis Users** tab, find the **Username** column.
2525

26-
:::image type="content" source="media/cache-java-redisson-get-started/user-name.png" alt-text="Screenshot of the Azure portal that shows the Azure Cache for Redis Data Access Configuration page with the Redis Users tab and a Username value highlighted." lightbox="media/cache-java-redisson-get-started/user-name.png":::
26+
:::image type="content" source="media/cache-java-get-started/user-name.png" alt-text="Screenshot of the Azure portal that shows the Azure Cache for Redis Data Access Configuration page with the Redis Users tab and a Username value highlighted." lightbox="media/cache-java-get-started/user-name.png":::
2727

2828
### [Access Key Authentication](#tab/accesskey)
2929

0 commit comments

Comments
 (0)