In addition to security vulnerabilities the advisor could also advise about the general quality of an Open Source project, e.g. using
by extending
|
enum class AdvisorCapability { |
|
/** Indicates that an advisor can retrieve information about defects. */ |
|
DEFECTS, |
|
|
|
/** Indicates that an advisor can retrieve information about security vulnerabilities. */ |
|
VULNERABILITIES |
|
} |
with
HEALTH or so.
In addition to security vulnerabilities the advisor could also advise about the general quality of an Open Source project, e.g. using
by extending
ort/model/src/main/kotlin/AdvisorCapability.kt
Lines 31 to 37 in 19c89ff
HEALTHor so.