forked from EventStore/EventStore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qodana.yaml
79 lines (66 loc) · 2.52 KB
/
qodana.yaml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
version: "1.0"
linter: jetbrains/qodana-dotnet:2024.1
dotnet:
solution: src/EventStore.sln
#
# License Audit
#
# Dependencies to exclude from the License Audit
dependencyIgnores:
- name: "EventStore.Plugins" # Our own software
customDependencies:
# System.UriTemplate (source copied under src/EventStore.NETCore.Compatibility from .NET 4.8 with some modifications)
- name: "System.UriTemplate"
version: ""
licenses:
- key: "MIT"
# Manually specify the licenses of the following packages
dependencyOverrides:
# not automatically detectable, but the MIT license is in the nuget package
- name: "NETStandard.Library"
version: "2.0.3"
licenses:
- key: "MIT"
url: "https://nuget.info/packages/NETStandard.Library/2.0.3"
# Qodana is detecting this as MS-NET-LIBRARY but the nuspec in the nuget package says MIT
- name: "Microsoft.Diagnostics.Runtime"
version: "2.2.332302"
licenses:
- key: "MIT"
url: "https://www.nuget.org/packages/Microsoft.Diagnostics.Runtime/2.2.332302"
# the referenced license file is not trivial but appears to imply that this library is MIT
- name: "Mono.Posix.NETStandard"
version: "1.0.0"
licenses:
- key: "MIT"
url: "https://github.com/mono/mono/blob/main/LICENSE"
# not automatically detectable in this older package
- name: "OpenTelemetry"
version: "1.4.0-rc.1"
licenses:
- key: "Apache-2.0"
url: "https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/LICENSE.TXT"
# not automatically detectable in this older package
- name: "OpenTelemetry.Api"
version: "1.4.0-rc.1"
licenses:
- key: "Apache-2.0"
url: "https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/LICENSE.TXT"
# not automatically detectable in this older package
- name: "OpenTelemetry.Exporter.Prometheus.AspNetCore"
version: "1.4.0-rc.1"
licenses:
- key: "Apache-2.0"
url: "https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/LICENSE.TXT"
# not automatically detectable in this older package
- name: "OpenTelemetry.Extensions.DependencyInjection"
version: "1.4.0-rc.1"
licenses:
- key: "Apache-2.0"
url: "https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/LICENSE.TXT"
# not automatically detectable in this older package
- name: "OpenTelemetry.Extensions.Hosting"
version: "1.4.0-rc.1"
licenses:
- key: "Apache-2.0"
url: "https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/LICENSE.TXT"