diff --git a/.htmltest.yml b/.htmltest.yml
index d2adbac45b64..9b931011fa2f 100644
--- a/.htmltest.yml
+++ b/.htmltest.yml
@@ -81,6 +81,7 @@ IgnoreURLs: # list of regexs of paths or URLs to be ignored
- ^https://www.farfetch.com
- ^https://www.zocdoc.com
- ^https://x.com
+ - ^https://maven.org
# OTel Google calendar - curl returns 200, but the link checker gets a 401:
- ^https://calendar.google.com/calendar/embed\?src=google.com_b79e3e90j7bbsa2n2p5an5lf60%40group.calendar.google.com
# YouTube playlists sometimes give a 404, although they give a 200 when accessed via browser:
diff --git a/data/registry/instrumentation-java-okhttp.yml b/data/registry/instrumentation-java-okhttp.yml
index dae54020d6cc..789dc0973ca7 100644
--- a/data/registry/instrumentation-java-okhttp.yml
+++ b/data/registry/instrumentation-java-okhttp.yml
@@ -1,3 +1,4 @@
+# cspell:ignore okhttp
title: okHTTP Instrumentation
registryType: instrumentation
language: java
@@ -13,4 +14,8 @@ authors:
urls:
repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/okhttp
createdAt: 2020-11-05
+package:
+ registry: maven
+ name: io.opentelemetry.instrumentation/opentelemetry-okhttp-3.0
+ version: 2.9.0-alpha
isFirstParty: false
diff --git a/layouts/partials/ecosystem/registry/entry.html b/layouts/partials/ecosystem/registry/entry.html
index 38834f697500..27b17cc83014 100644
--- a/layouts/partials/ecosystem/registry/entry.html
+++ b/layouts/partials/ecosystem/registry/entry.html
@@ -46,6 +46,10 @@
"installLine" "cargo add %s"
"installTemplate" "ecosystem/registry/quickinstall/default.md"
"icon" "fab fa-rust")
+ "maven" (dict
+ "urlPattern" "https://maven.org/artifact/%s"
+ "installTemplate" "ecosystem/registry/quickinstall/maven.md"
+ "icon" "fa-solid fa-feather")
-}}
{{ $isNative := and (or (eq .registryType "instrumentation") (eq .registryType "application integration")) (.isNative) }}
diff --git a/layouts/partials/ecosystem/registry/quickinstall/maven.md b/layouts/partials/ecosystem/registry/quickinstall/maven.md
new file mode 100644
index 000000000000..b7dfc26f20b7
--- /dev/null
+++ b/layouts/partials/ecosystem/registry/quickinstall/maven.md
@@ -0,0 +1,21 @@
+##### Maven
+
+Add the following dependency in your `pom.xml` file to install this package.
+
+```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
+dependencies {
+ implementation '{{ index (split .name "/") 0 }}:{{ index (split .name "/") 1 }}:{{ .version }}'
+}
+```
\ No newline at end of file