-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
75 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<!-- | ||
Please provide a meaningful description of what your changes will do. Bonus points for including links to related issues, other PRs, or technical references. | ||
A detailed description helps reviewers understand the context of your change and reduces | ||
the time needed to review. | ||
Please make sure to follow the [contribution guidelines](https://opentelemetry.io/docs/contributing/). | ||
We run checks on all PRs, to ensure that your contribution follows our [style guide](https://opentelemetry.io/docs/contributing/style-guide/). | ||
Many requirements of that guide can be enforced by running `npm run fix:all` locally and committing the changes. | ||
Note, that although those checks need to be green before we can merge your PR, do not | ||
worry about their status after submitting your PR. We will provide you with guidance, when and how to | ||
address them. | ||
Similarly, do not worry about your PR being out-of-date with the base branch and do not continuously | ||
update or rebase your branch. We will let you know when it is necessary. | ||
If you have any questions, feel free to ask. | ||
--> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
##### Maven | ||
|
||
Add the following dependency in your `pom.xml` file to install this package. | ||
|
||
```xml | ||
<dependency> | ||
<groupId>{{ index (split .name "/") 0 }}</groupId> | ||
<artifactId>{{ index (split .name "/") 1 }}</artifactId> | ||
<version>{{ .version }}</version> | ||
</dependency> | ||
``` | ||
|
||
##### 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 }}' | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters