Skip to content

Commit 3e3e82f

Browse files
committed
Fixing Tabs
1 parent 1e2d7ab commit 3e3e82f

File tree

3 files changed

+37
-29
lines changed

3 files changed

+37
-29
lines changed

articles/azure-app-configuration/quickstart-feature-flag-spring-boot.md

Lines changed: 30 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -54,31 +54,39 @@ Use the [Spring Initializr](https://start.spring.io/) to create a new Spring Boo
5454

5555
1. Open the *pom.xml* file in a text editor and add the following to the list of `<dependencies>`.:
5656

57-
#### [.NET Core 2.x](#tab/core2x)
57+
#### [Spring Cloud 1.1.x](#tab/java)
5858
```xml
59-
<Project Sdk="Microsoft.NET.Sdk.Web">
60-
61-
<PropertyGroup>
62-
<TargetFramework>netcoreapp2.1</TargetFramework>
63-
<UserSecretsId>79a3edd0-2092-40a2-a04d-dcb46d5ca9ed</UserSecretsId>
64-
</PropertyGroup>
65-
66-
<ItemGroup>
67-
<PackageReference Include="Microsoft.AspNetCore.App" />
68-
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.1.2" PrivateAssets="All" />
69-
</ItemGroup>
70-
71-
</Project>
59+
<dependency>
60+
<groupId>com.microsoft.azure</groupId>
61+
<artifactId>spring-cloud-azure-appconfiguration-config</artifactId>
62+
<version>1.1.1</version>
63+
</dependency>
64+
<dependency>
65+
<groupId>com.microsoft.azure</groupId>
66+
<artifactId>spring-cloud-azure-feature-management-web</artifactId>
67+
<version>1.1.1</version>
68+
</dependency>
69+
<dependency>
70+
<groupId>org.springframework.boot</groupId>
71+
<artifactId>spring-boot-starter-thymeleaf</artifactId>
72+
</dependency>
7273
```
73-
#### [.NET Core 3.x](#tab/core3x)
74+
#### [Spring Cloud 1.2.x](#tab/java)
7475
```xml
75-
<Project Sdk="Microsoft.NET.Sdk.Web">
76-
77-
<PropertyGroup>
78-
<TargetFramework>netcoreapp3.1</TargetFramework>
79-
<UserSecretsId>79a3edd0-2092-40a2-a04d-dcb46d5ca9ed</UserSecretsId>
80-
</PropertyGroup>
81-
</Project>
76+
<dependency>
77+
<groupId>com.microsoft.azure</groupId>
78+
<artifactId>spring-cloud-azure-appconfiguration-config</artifactId>
79+
<version>1.2.1</version>
80+
</dependency>
81+
<dependency>
82+
<groupId>com.microsoft.azure</groupId>
83+
<artifactId>spring-cloud-azure-feature-management-web</artifactId>
84+
<version>1.2.1</version>
85+
</dependency>
86+
<dependency>
87+
<groupId>org.springframework.boot</groupId>
88+
<artifactId>spring-boot-starter-thymeleaf</artifactId>
89+
</dependency>
8290
```
8391
---
8492

articles/azure-app-configuration/quickstart-java-spring-app.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,20 +55,20 @@ Use the [Spring Initializr](https://start.spring.io/) to create a new Spring Boo
5555
1. After you extract the files on your local system, your simple Spring Boot application is ready for editing. Locate the *pom.xml* file in the root directory of your app.
5656

5757
1. Open the *pom.xml* file in a text editor, and add the Spring Cloud Azure Config starter to the list of `<dependencies>`:
58-
59-
#### [Spring Cloud 1.1.x](#tab/spring1.2.x)
58+
59+
#### [Spring Cloud 1.1.x](#tab/java)
6060
```xml
6161
<dependency>
6262
<groupId>com.microsoft.azure</groupId>
63-
<artifactId>spring-cloud-azure-appconfiguration-config</artifactId>
63+
<artifactId>spring-cloud-azure-feature-management-web</artifactId>
6464
<version>1.1.1</version>
6565
</dependency>
6666
```
67-
#### [Spring Cloud 1.2.x](#tab/spring1.2.x)
67+
#### [Spring Cloud 1.2.x](#tab/java)
6868
```xml
6969
<dependency>
7070
<groupId>com.microsoft.azure</groupId>
71-
<artifactId>spring-cloud-azure-appconfiguration-config</artifactId>
71+
<artifactId>spring-cloud-azure-feature-management</artifactId>
7272
<version>1.2.1</version>
7373
</dependency>
7474
```

articles/azure-app-configuration/use-feature-flags-spring-boot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ We recommend that you keep feature flags outside the application and manage them
4949

5050
The easiest way to connect your Spring Boot application to App Configuration is through the configuration provider:
5151

52-
#### [Spring Cloud 1.1.x](#tab/spring1.2.x)
52+
#### [Spring Cloud 1.1.x](#tab/java)
5353

5454
```xml
5555
<dependency>
@@ -59,7 +59,7 @@ The easiest way to connect your Spring Boot application to App Configuration is
5959
</dependency>
6060
```
6161

62-
#### [Spring Cloud 1.2.x](#tab/spring1.2.x)
62+
#### [Spring Cloud 1.2.x](#tab/java)
6363

6464
```xml
6565
<dependency>

0 commit comments

Comments
 (0)