-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathTHIRD_PARTY_NOTICES.md.tmpl
More file actions
36 lines (31 loc) · 1.76 KB
/
Copy pathTHIRD_PARTY_NOTICES.md.tmpl
File metadata and controls
36 lines (31 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Third Party Notices
New Relic Agent Control uses source code from third
party libraries which carry
their own copyright notices and license terms. These notices are provided
below.
In the event that a required notice is missing or incorrect, please notify us
either by [opening an issue](https://github.com/newrelic/newrelic-agent-control/issues/new),
or by e-mailing [open-source@newrelic.com](mailto:open-source@newrelic.com).
For any licenses that require the disclosure of source code, the source code
can be found at <https://github.com/newrelic/newrelic-agent-control>.
{% for dep, licenseObj in dependencies %}
{%- if dep is containing(pat="newrelic_agent_control") %}{% continue %}{% endif -%}
{%- if dep is containing(pat="resource-detection") %}{% continue %}{% endif -%}
{%- if dep is containing(pat="self-replacer") %}{% continue %}{% endif -%}
{%- if dep is containing(pat="fs") %}{% continue %}{% endif -%}
{%- if dep is containing(pat="config-migrate") %}{% continue %}{% endif -%}
{%- if dep is containing(pat="wrapper_with_default") %}{% continue %}{% endif -%}
{%- if dep is containing(pat="e2e-runner") %}{% continue %}{% endif -%}
{%- if dep is containing(pat="fake-opamp-server") %}{% continue %}{% endif -%}
{%- if dep is containing(pat="oci-test-utils") %}{% continue %}{% endif -%}
{# The next two dependencies are NR projects that share the same license. So not "third parties" #}
{%- if dep is containing(pat="nr-auth") %}{% continue %}{% endif -%}
{%- if dep is containing(pat="opamp-rs") %}{% continue %}{% endif %}
## {{ dep | split(pat=" ") | first }} <{{ dep | split(pat=" ") | last }}>
Distributed under the following license(s):
{% for key, licenses in licenseObj -%}
{% for license in licenses -%}
* {{ license }}
{% endfor -%}
{%- endfor -%}
{%- endfor -%}