diff --git a/content-modules/opentelemetry-specification b/content-modules/opentelemetry-specification
index 0a78571045ca..45dea75ad8d1 160000
--- a/content-modules/opentelemetry-specification
+++ b/content-modules/opentelemetry-specification
@@ -1 +1 @@
-Subproject commit 0a78571045ca1dca48621c9648ec3c832c3c541c
+Subproject commit 45dea75ad8d16f9a0ed8a752d968a4e810e64d64
diff --git a/layouts/partials/ecosystem/registry/quickinstall/maven.md b/layouts/partials/ecosystem/registry/quickinstall/maven.md
index 36c2e4807671..71d0fd3fc155 100644
--- a/layouts/partials/ecosystem/registry/quickinstall/maven.md
+++ b/layouts/partials/ecosystem/registry/quickinstall/maven.md
@@ -1,13 +1,37 @@
+### Maven
+
Add the following dependency in your `pom.xml` file to install this package.
-{{% tabpane text=true right=true %}}
- {{% tab header="Maven" %}}
- ```xml
-
- {{ index (split .name "/") 0 }}
- {{ index (split .name "/") 1 }}
- {{ .version }}
-
- ```
- {{% /tab %}}
-{{% /tabpane %}}
+```xml
+
+ {{ index (split .name "/") 0 }}
+ {{ index (split .name "/") 1 }}
+ {{ .version }}
+
+```
+
+### Gradle
+Add the following dependency in your `build.gradle` file to install this package:
+
+```groovy
+implementation group: 'io.opentelemetry.instrumentation', name: 'opentelemetry-okhttp-3.0', version: '2.8.0-alpha'
+```
+
+**Gradle(short)**:
+Add the following dependency in your `build.gradle` file:
+
+```groovy
+dependencies {
+ implementation 'io.opentelemetry.instrumentation:opentelemetry-okhttp-3.0:2.8.0-alpha'
+}
+```
+
+**Gradle(kotlin)**:
+Add the following dependency in your `build.gradle.kts` file:
+
+```kotlin
+dependencies {
+ implementation("io.opentelemetry.instrumentation:opentelemetry-okhttp-3.0:2.8.0-alpha")
+}
+```
+