diff --git a/pages/doc/documentation_getting_started.md b/pages/doc/documentation_getting_started.md index a7f6d9d46..a8e2107f3 100644 --- a/pages/doc/documentation_getting_started.md +++ b/pages/doc/documentation_getting_started.md @@ -90,7 +90,7 @@ Our documentation includes reference documentation for API, query language, and
Follow these steps if you don't have an Operations for Applications account and need to use the freemium account.
-Open your application and add the following code to your pom.xml
file.
-<dependency> - <groupId>com.wavefront</groupId> - <artifactId>wavefront-spring-boot-starter</artifactId> - <scope>runtime</scope> -</dependency> --
Open your application and add the following code to your build.gradle
file.
-dependencies { - ... - runtimeOnly 'com.wavefront:wavefront-spring-boot-starter' -} --
The Wavefront for Spring Boot dependency needs to be compatible with the Spring Boot release version. Therefore, replace $releaseVersion
with the correct dependency version. See System Requirements to get the correct dependency version.
- -<dependencyManagement> - <dependencies> - ..... - <dependency> - <groupId>com.wavefront</groupId> - <artifactId>wavefront-spring-boot-bom</artifactId> - <version>$releaseVersion</version> - <type>pom</type> - <scope>import</scope> - </dependency> - ..... - </dependencies> -</dependencyManagement> --
-dependencyManagement { - imports { - mavenBom "com.wavefront:wavefront-spring-boot-bom:$releaseVersion" - } -} --
-<dependency> - <groupId>io.micrometer</groupId> - <artifactId>micrometer-tracing-bridge-brave</artifactId> -</dependency> -<dependency> - <groupId>io.micrometer</groupId> - <artifactId>micrometer-tracing-reporter-wavefront</artifactId> - <scope>runtime</scope> -</dependency> --
-dependencies { - ... - implementation 'io.micrometer:micrometer-tracing-bridge-brave' - runtimeOnly 'io.micrometer:micrometer-tracing-reporter-wavefront' -} --
Follow these steps if you already have an Operations for Applications account.