File tree Expand file tree Collapse file tree 4 files changed +31
-0
lines changed
layouts/partials/ecosystem/registry Expand file tree Collapse file tree 4 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ IgnoreURLs: # list of regexs of paths or URLs to be ignored
8181 - ^https://www.farfetch.com
8282 - ^https://www.zocdoc.com
8383 - ^https://x.com
84+ - ^https://maven.org
8485 # OTel Google calendar - curl returns 200, but the link checker gets a 401:
8586 - ^https://calendar.google.com/calendar/embed\?src=google.com_b79e3e90j7bbsa2n2p5an5lf60%40group.calendar.google.com
8687 # YouTube playlists sometimes give a 404, although they give a 200 when accessed via browser:
Original file line number Diff line number Diff line change 1+ # cspell:ignore okhttp
12title : okHTTP Instrumentation
23registryType : instrumentation
34language : java
@@ -13,4 +14,8 @@ authors:
1314urls :
1415 repo : https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/okhttp
1516createdAt : 2020-11-05
17+ package :
18+ registry : maven
19+ name : io.opentelemetry.instrumentation/opentelemetry-okhttp-3.0
20+ version : 2.9.0-alpha
1621isFirstParty : false
Original file line number Diff line number Diff line change 4646 "installLine" "cargo add %s"
4747 "installTemplate" "ecosystem/registry/quickinstall/default.md"
4848 "icon" "fab fa-rust")
49+ "maven" (dict
50+ "urlPattern" "https://maven.org/artifact/%s"
51+ "installTemplate" "ecosystem/registry/quickinstall/maven.md"
52+ "icon" "fa-solid fa-feather")
4953 -}}
5054
5155 {{ $isNative := and (or (eq .registryType "instrumentation") (eq .registryType "application integration")) (.isNative) }}
Original file line number Diff line number Diff line change 1+ ##### Maven
2+
3+ Add the following dependency in your ` pom.xml ` file to install this package.
4+
5+ ``` xml
6+ <dependency >
7+ <groupId >{{ index (split .name "/") 0 }}</groupId >
8+ <artifactId >{{ index (split .name "/") 1 }}</artifactId >
9+ <version >{{ .version }}</version >
10+ </dependency >
11+ ```
12+
13+ ##### Gradle
14+
15+ Add the following dependency in your ` build.gradle ` file to install this package:
16+
17+ ``` groovy
18+ dependencies {
19+ implementation '{{ index (split .name "/") 0 }}:{{ index (split .name "/") 1 }}:{{ .version }}'
20+ }
21+ ```
You can’t perform that action at this time.
0 commit comments