You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 6, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+10-6Lines changed: 10 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -37,14 +37,15 @@ This allows you to see the setup for the Spring Boot generation your project is
37
37
38
38
For completeness, here is what you should follow to configure your project.
39
39
40
-
> **Note**: Version 2.1.1 is the latest version of the starter. The Wavefront for Spring Boot dependency needs to be compatible with the Spring Boot release version. See [System Requirements](https://docs.wavefront.com/wavefront_springboot.html#versionCompatibility) to get the correct dependency version.
40
+
> **Note**: The Wavefront for Spring Boot dependency needs to be compatible with the Spring Boot release version. See [System Requirements](https://docs.wavefront.com/wavefront_springboot.html#versionCompatibility) to get the correct dependency version.
41
41
42
42
Configure your project using Maven or Gradle.
43
43
44
44
**Maven**
45
45
46
46
- The core setup consists of importing the `wavefront-spring-boot-bom` Bill Of Materials (BOM).
47
-
47
+
48
+
Example:
48
49
```
49
50
<dependencyManagement>
50
51
<dependencies>
@@ -60,7 +61,8 @@ Configure your project using Maven or Gradle.
60
61
```
61
62
62
63
- Add the `wavefront-spring-boot-starter` to your project.
63
-
64
+
65
+
Example:
64
66
```
65
67
<dependency>
66
68
<groupId>com.wavefront</groupId>
@@ -71,7 +73,8 @@ Configure your project using Maven or Gradle.
71
73
**Gradle**
72
74
73
75
- If you are using Gradle, make sure your project uses the `io.spring.dependency-management` plugin and add the following to your build.gradle file:
74
-
76
+
77
+
Example:
75
78
```
76
79
dependencyManagement {
77
80
imports {
@@ -81,7 +84,8 @@ Configure your project using Maven or Gradle.
81
84
```
82
85
83
86
- Add the `wavefront-spring-boot-starter` to your project.
84
-
87
+
88
+
Example:
85
89
```
86
90
dependencies {
87
91
...
@@ -118,7 +122,7 @@ See [Getting Started on the Spring Cloud documentation](https://spring.io/projec
118
122
After you've added the spring-cloud-dependencies BOM, you can add Spring Cloud Sleuth as follows:
119
123
120
124
- Maven: Add the following dependency to the `pom.xml` file
0 commit comments