You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/_docs/integrations/defectdojo.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -119,6 +119,10 @@ Enable auto-create by setting the following configuration property:
119
119
|`defectdojo.autocreate.enabled`|`false`| Enable/disable auto context creation |
120
120
|`defectdojo.autocreate.engagementName`|`dependencytrack`| Default engagement name for all projects |
121
121
|`defectdojo.autocreate.productTypeName`|`Dependency Track`| Default product type name for all projects |
122
+
|`defectdojo.autocreate.deduplicationOnEngagement`|`false`| Enable deduplication at engagement level instead of product level |
123
+
124
+
**About Deduplication:**
125
+
By default, DefectDojo deduplicates findings at the **Product level**, meaning duplicate findings are identified across all engagements within a product. Setting `deduplicationOnEngagement` to `true` changes this to deduplicate at the **Engagement level** instead, isolating duplicate detection within each engagement.
122
126
123
127
#### Per-project Property Overrides (Optional)
124
128
@@ -145,6 +149,13 @@ You can override the default names on a per-project basis:
145
149
| Property Value | Custom product type name (defaults to global config if not set) |
Copy file name to clipboardExpand all lines: src/main/java/org/dependencytrack/model/ConfigPropertyConstants.java
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -102,6 +102,7 @@ public enum ConfigPropertyConstants {
102
102
DEFECTDOJO_AUTOCREATE_ENABLED("integrations", "defectdojo.autocreate.enabled", "false", PropertyType.BOOLEAN, "Flag to enable/disable DefectDojo auto context creation"),
103
103
DEFECTDOJO_AUTOCREATE_ENGAGEMENT_NAME("integrations", "defectdojo.autocreate.engagementName", "dependencytrack", PropertyType.STRING, "Default engagement name for DefectDojo auto context creation"),
104
104
DEFECTDOJO_AUTOCREATE_PRODUCT_TYPE_NAME("integrations", "defectdojo.autocreate.productTypeName", "Dependency Track", PropertyType.STRING, "Default product type name for DefectDojo auto context creation"),
105
+
DEFECTDOJO_AUTOCREATE_DEDUPLICATION_ON_ENGAGEMENT("integrations", "defectdojo.autocreate.deduplicationOnEngagement", "false", PropertyType.BOOLEAN, "Flag to enable deduplication on engagement level instead of product level"),
105
106
KENNA_ENABLED("integrations", "kenna.enabled", "false", PropertyType.BOOLEAN, "Flag to enable/disable Kenna Security integration"),
106
107
KENNA_API_URL("integrations", "kenna.api.url", "https://api.kennasecurity.com", PropertyType.STRING, "Kenna Security API URL"),
107
108
KENNA_SYNC_CADENCE("integrations", "kenna.sync.cadence", "60", PropertyType.INTEGER, "The cadence (in minutes) to upload to Kenna Security"),
0 commit comments