Remove runtime scope from README.md (#12521)

This commit is contained in:
Vladimir 2024-10-27 19:26:20 -07:00 committed by GitHub
parent bb90e0835a
commit 9074b48905
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 2 deletions

View File

@ -20,7 +20,6 @@ For Maven, add to your `pom.xml` dependencies:
<groupId>io.opentelemetry.instrumentation</groupId> <groupId>io.opentelemetry.instrumentation</groupId>
<artifactId>opentelemetry-log4j-appender-2.17</artifactId> <artifactId>opentelemetry-log4j-appender-2.17</artifactId>
<version>OPENTELEMETRY_VERSION</version> <version>OPENTELEMETRY_VERSION</version>
<scope>runtime</scope>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@ -28,7 +27,7 @@ For Maven, add to your `pom.xml` dependencies:
For Gradle, add to your dependencies: For Gradle, add to your dependencies:
```groovy ```groovy
runtimeOnly("io.opentelemetry.instrumentation:opentelemetry-log4j-appender-2.17:OPENTELEMETRY_VERSION") implementation("io.opentelemetry.instrumentation:opentelemetry-log4j-appender-2.17:OPENTELEMETRY_VERSION")
``` ```
### Usage ### Usage