Skip to content

Commit 27fb03a

Browse files
committed
Fixing Tabs
1 parent a4b7459 commit 27fb03a

File tree

3 files changed

+27
-20
lines changed

3 files changed

+27
-20
lines changed

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

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

5555
1. Open the *pom.xml* file in a text editor and add the following to the list of `<dependencies>`.:
56+
57+
#### [Spring Cloud 1.1.x](#tab/spring12x)
5658

57-
#### [Spring Cloud 1.1.x](#tab/spring1.2.x)
5859
```xml
5960
<dependency>
6061
<groupId>com.microsoft.azure</groupId>
@@ -71,7 +72,9 @@ Use the [Spring Initializr](https://start.spring.io/) to create a new Spring Boo
7172
<artifactId>spring-boot-starter-thymeleaf</artifactId>
7273
</dependency>
7374
```
74-
#### [Spring Cloud 1.2.x](#tab/spring1.2.x)
75+
76+
#### [Spring Cloud 1.2.x](#tab/spring12x)
77+
7578
```xml
7679
<dependency>
7780
<groupId>com.microsoft.azure</groupId>

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ 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-
58+
5959
#### [Spring Cloud 1.1.x](#tab/spring1.2.x)
6060
```xml
6161
<dependency>
@@ -94,6 +94,7 @@ Use the [Spring Initializr](https://start.spring.io/) to create a new Spring Boo
9494
}
9595
}
9696
```
97+
---
9798

9899
1. Create a new Java file named *HelloController.java* in the package directory of your app. Add the following lines:
99100

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

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -49,23 +49,26 @@ 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)
53-
```xml
54-
<dependency>
55-
<groupId>com.microsoft.azure</groupId>
56-
<artifactId>spring-cloud-azure-feature-management-web</artifactId>
57-
<version>1.1.1</version>
58-
</dependency>
59-
```
60-
#### [Spring Cloud 1.2.x](#tab/spring1.2.x)
61-
```xml
62-
<dependency>
63-
<groupId>com.microsoft.azure</groupId>
64-
<artifactId>spring-cloud-azure-feature-management-web</artifactId>
65-
<version>1.2.1</version>
66-
</dependency>
67-
```
68-
---
52+
#### [Spring Cloud 1.1.x](#tab/spring1.2.x)
53+
54+
```xml
55+
<dependency>
56+
<groupId>com.microsoft.azure</groupId>
57+
<artifactId>spring-cloud-azure-feature-management-web</artifactId>
58+
<version>1.1.1</version>
59+
</dependency>
60+
```
61+
62+
#### [Spring Cloud 1.2.x](#tab/spring1.2.x)
63+
64+
```xml
65+
<dependency>
66+
<groupId>com.microsoft.azure</groupId>
67+
<artifactId>spring-cloud-azure-feature-management-web</artifactId>
68+
<version>1.2.1</version>
69+
</dependency>
70+
```
71+
---
6972

7073
## Feature flag declaration
7174

0 commit comments

Comments
 (0)