-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTHIRD_PARTY_NOTICES
More file actions
90 lines (65 loc) · 3.99 KB
/
Copy pathTHIRD_PARTY_NOTICES
File metadata and controls
90 lines (65 loc) · 3.99 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
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
80
81
82
83
84
85
86
87
88
89
90
THIRD PARTY NOTICES
===================
MutantKit is licensed under the Apache License, Version 2.0 (see LICENSE).
This file records third-party material that MutantKit uses, derives from, or
distributes, together with the licences that govern it.
-------------------------------------------------------------------------------
1. Muter — https://github.com/muter-mutation-testing/muter
-------------------------------------------------------------------------------
Licence: MIT
Status: Referenced. No Muter source code is vendored into this repository at
this time.
MutantKit is an independent implementation, not a fork of Muter. Muter is used as
a reference asset in the ways its authors' licence permits:
* `Sources/MuterCompatibility` implements an importer for Muter's
`muter.conf.yml` configuration format. The field names and semantics of that
format were determined by reading Muter's own
`Sources/muterCore/Configuration/MuterConfiguration.swift`. The importer
code itself is original.
* Muter's issue history and its behaviour under known failure modes informed
the regression tests in `Tests/MutantKitTests/Regression`. The tests are
original; the failure modes they encode are observations about Muter.
MutantKit uses a different evidence and scoring model from Muter and does not
aim to reproduce Muter's classification semantics. See ADR-0001.
If Muter source is vendored in future, this notice must be updated to name the
specific files, and the MIT notice below must additionally be reproduced at the
head of each such file.
MIT License
Copyright (c) 2020 Muter
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-------------------------------------------------------------------------------
2. mutation-testing-elements — https://github.com/stryker-mutator/mutation-testing-elements
-------------------------------------------------------------------------------
Licence: Apache-2.0
Status: Schema referenced. No code vendored.
`Sources/Reporting/StrykerReporter.swift` emits JSON conforming to the Mutation
Testing Elements report schema so that MutantKit reports can be consumed by the
existing cross-language HTML renderer and dashboard. The schema is referenced by
URL in the emitted documents; no schema file or renderer code is distributed
here.
-------------------------------------------------------------------------------
3. Swift package dependencies
-------------------------------------------------------------------------------
Resolved at build time by SwiftPM and not vendored in this repository. Each
remains under its own licence.
swift-syntax Apache-2.0 with Runtime Library Exception
https://github.com/swiftlang/swift-syntax
swift-argument-parser Apache-2.0 with Runtime Library Exception
https://github.com/apple/swift-argument-parser
Yams MIT
https://github.com/jpsim/Yams
(Yams bundles libfyaml/LibYAML — MIT)