Skip to content

Commit 76c1e4b

Browse files
committed
Just removing tabs
1 parent 1dc8dc0 commit 76c1e4b

File tree

3 files changed

+58
-56
lines changed

3 files changed

+58
-56
lines changed

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

Lines changed: 37 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -54,41 +54,43 @@ 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-
#### [Spring Cloud 1.1.x](#tab/java/1.1)
58-
```xml
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>
73-
```
74-
#### [Spring Cloud 1.2.x](#tab/java/1.2)
75-
```xml
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>
90-
```
91-
---
57+
### Spring Cloud 1.1.x
58+
59+
```xml
60+
<dependency>
61+
<groupId>com.microsoft.azure</groupId>
62+
<artifactId>spring-cloud-azure-appconfiguration-config</artifactId>
63+
<version>1.1.1</version>
64+
</dependency>
65+
<dependency>
66+
<groupId>com.microsoft.azure</groupId>
67+
<artifactId>spring-cloud-azure-feature-management-web</artifactId>
68+
<version>1.1.1</version>
69+
</dependency>
70+
<dependency>
71+
<groupId>org.springframework.boot</groupId>
72+
<artifactId>spring-boot-starter-thymeleaf</artifactId>
73+
</dependency>
74+
```
75+
76+
### Spring Cloud 1.2.x
77+
78+
```xml
79+
<dependency>
80+
<groupId>com.microsoft.azure</groupId>
81+
<artifactId>spring-cloud-azure-appconfiguration-config</artifactId>
82+
<version>1.2.1</version>
83+
</dependency>
84+
<dependency>
85+
<groupId>com.microsoft.azure</groupId>
86+
<artifactId>spring-cloud-azure-feature-management-web</artifactId>
87+
<version>1.2.1</version>
88+
</dependency>
89+
<dependency>
90+
<groupId>org.springframework.boot</groupId>
91+
<artifactId>spring-boot-starter-thymeleaf</artifactId>
92+
</dependency>
93+
```
9294

9395
> [!Note]
9496
> There is a non-web Feature Management Library that doesn't have a dependency on spring-web. Refer to GitHub's [documentation](https://github.com/microsoft/spring-cloud-azure/tree/master/spring-cloud-azure-feature-management) for differences.

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

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -56,23 +56,25 @@ Use the [Spring Initializr](https://start.spring.io/) to create a new Spring Boo
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>`:
5858

59-
#### [Spring Cloud 1.1.x](#tab/java)
60-
```xml
61-
<dependency>
62-
<groupId>com.microsoft.azure</groupId>
63-
<artifactId>spring-cloud-azure-feature-management</artifactId>
64-
<version>1.1.1</version>
65-
</dependency>
66-
```
67-
#### [Spring Cloud 1.2.x](#tab/other)
68-
```xml
69-
<dependency>
70-
<groupId>com.microsoft.azure</groupId>
71-
<artifactId>spring-cloud-azure-feature-management</artifactId>
72-
<version>1.2.1</version>
73-
</dependency>
74-
```
75-
---
59+
### Spring Cloud 1.1.x
60+
61+
```xml
62+
<dependency>
63+
<groupId>com.microsoft.azure</groupId>
64+
<artifactId>spring-cloud-azure-feature-management</artifactId>
65+
<version>1.1.1</version>
66+
</dependency>
67+
```
68+
69+
### Spring Cloud 1.2.x
70+
71+
```xml
72+
<dependency>
73+
<groupId>com.microsoft.azure</groupId>
74+
<artifactId>spring-cloud-azure-feature-management</artifactId>
75+
<version>1.2.1</version>
76+
</dependency>
77+
```
7678

7779
1. Create a new Java file named *MessageProperties.java* in the package directory of your app. Add the following lines:
7880

@@ -94,7 +96,6 @@ Use the [Spring Initializr](https://start.spring.io/) to create a new Spring Boo
9496
}
9597
}
9698
```
97-
---
9899

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

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

Lines changed: 2 additions & 3 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/java)
52+
### Spring Cloud 1.1.x
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/other)
62+
### Spring Cloud 1.2.x
6363

6464
```xml
6565
<dependency>
@@ -68,7 +68,6 @@ The easiest way to connect your Spring Boot application to App Configuration is
6868
<version>1.2.1</version>
6969
</dependency>
7070
```
71-
---
7271

7372
## Feature flag declaration
7473

0 commit comments

Comments
 (0)