Commit 2e5649a 1 parent b58496a commit 2e5649a Copy full SHA for 2e5649a
File tree 4 files changed +31
-0
lines changed
layouts/partials/ecosystem/registry
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
81
81
- ^https://www.farfetch.com
82
82
- ^https://www.zocdoc.com
83
83
- ^https://x.com
84
+ - ^https://maven.org
84
85
# OTel Google calendar - curl returns 200, but the link checker gets a 401:
85
86
- ^https://calendar.google.com/calendar/embed\?src=google.com_b79e3e90j7bbsa2n2p5an5lf60%40group.calendar.google.com
86
87
# 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
1
2
title : okHTTP Instrumentation
2
3
registryType : instrumentation
3
4
language : java
@@ -13,4 +14,8 @@ authors:
13
14
urls :
14
15
repo : https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/okhttp
15
16
createdAt : 2020-11-05
17
+ package :
18
+ registry : maven
19
+ name : io.opentelemetry.instrumentation/opentelemetry-okhttp-3.0
20
+ version : 2.9.0-alpha
16
21
isFirstParty : false
Original file line number Diff line number Diff line change 46
46
"installLine" "cargo add %s"
47
47
"installTemplate" "ecosystem/registry/quickinstall/default.md"
48
48
"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")
49
53
-}}
50
54
51
55
{{ $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