diff --git a/instrumentation/spring/README.md b/instrumentation/spring/README.md
index 2d339ffbd1..990ac03d21 100644
--- a/instrumentation/spring/README.md
+++ b/instrumentation/spring/README.md
@@ -54,7 +54,7 @@ Replace `OPENTELEMETRY_VERSION` with the latest stable [release](https://search.
```xml
io.opentelemetry
- opentelemetry-exporters-logging
+ opentelemetry-exporter-logging
OPENTELEMETRY_VERSION
```
@@ -83,7 +83,7 @@ implementation("io.opentelemetry:opentelemetry-sdk:OPENTELEMETRY_VERSION")
#### LoggingExporter
```gradle
-implementation("io.opentelemetry:opentelemetry-exporters-logging:OPENTELEMETRY_VERSION")
+implementation("io.opentelemetry:opentelemetry-exporter-logging:OPENTELEMETRY_VERSION")
```
#### Jaeger Exporter
diff --git a/instrumentation/spring/spring-boot-autoconfigure/README.md b/instrumentation/spring/spring-boot-autoconfigure/README.md
index 19316a91cb..5d7d09a969 100644
--- a/instrumentation/spring/spring-boot-autoconfigure/README.md
+++ b/instrumentation/spring/spring-boot-autoconfigure/README.md
@@ -32,7 +32,7 @@ For Maven add to your `pom.xml`:
io.opentelemetry
- opentelemetry-exporters-logging
+ opentelemetry-exporter-logging
OPENTELEMETRY_VERSION
diff --git a/instrumentation/spring/spring-web-3.1/library/README.md b/instrumentation/spring/spring-web-3.1/library/README.md
index 4c047ccdfc..a78cfc4029 100644
--- a/instrumentation/spring/spring-web-3.1/library/README.md
+++ b/instrumentation/spring/spring-web-3.1/library/README.md
@@ -28,7 +28,7 @@ For Maven add to your `pom.xml`:
io.opentelemetry
- opentelemetry-exporters-logging
+ opentelemetry-exporter-logging
OPENTELEMETRY_VERSION
@@ -47,7 +47,7 @@ For Gradle add to your dependencies:
```groovy
implementation("io.opentelemetry.instrumentation:opentelemetry-spring-web-3.1:OPENTELEMETRY_VERSION")
-implementation("io.opentelemetry:opentelemetry-exporters-logging:OPENTELEMETRY_VERSION")
+implementation("io.opentelemetry:opentelemetry-exporter-logging:OPENTELEMETRY_VERSION")
//this artifact should already be present in your application
implementation("org.springframework:spring-web:SPRING_VERSION")
diff --git a/instrumentation/spring/spring-webflux-5.0/library/README.md b/instrumentation/spring/spring-webflux-5.0/library/README.md
index ccc652b99c..e7bc99d1ca 100644
--- a/instrumentation/spring/spring-webflux-5.0/library/README.md
+++ b/instrumentation/spring/spring-webflux-5.0/library/README.md
@@ -27,7 +27,7 @@ For Maven add to your `pom.xml`:
io.opentelemetry
- opentelemetry-exporters-logging
+ opentelemetry-exporter-logging
OPENTELEMETRY_VERSION
@@ -50,7 +50,7 @@ implementation("io.opentelemetry.instrumentation:opentelemetry-spring-webflux-5.
// opentelemetry exporter
// replace this default exporter with your opentelemetry exporter (ex. otlp/zipkin/jaeger/..)
-implementation("io.opentelemetry:opentelemetry-exporters-logging:OPENTELEMETRY_VERSION")
+implementation("io.opentelemetry:opentelemetry-exporter-logging:OPENTELEMETRY_VERSION")
// required to instrument spring-webmvc
// this artifact should already be present in your application
diff --git a/instrumentation/spring/spring-webmvc-3.1/library/README.md b/instrumentation/spring/spring-webmvc-3.1/library/README.md
index d8e779b723..022dd124d8 100644
--- a/instrumentation/spring/spring-webmvc-3.1/library/README.md
+++ b/instrumentation/spring/spring-webmvc-3.1/library/README.md
@@ -27,7 +27,7 @@ For Maven add to your `pom.xml`:
io.opentelemetry
- opentelemetry-exporters-logging
+ opentelemetry-exporter-logging
OPENTELEMETRY_VERSION
@@ -51,7 +51,7 @@ implementation("io.opentelemetry.instrumentation:opentelemetry-spring-webmvc-3.1
// opentelemetry exporter
// replace this default exporter with your opentelemetry exporter (ex. otlp/zipkin/jaeger/..)
-implementation("io.opentelemetry:opentelemetry-exporters-logging:OPENTELEMETRY_VERSION")
+implementation("io.opentelemetry:opentelemetry-exporter-logging:OPENTELEMETRY_VERSION")
// required to instrument spring-webmvc
// this artifact should already be present in your application