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
{{ message }}
This repository was archived by the owner on Oct 11, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -173,6 +173,7 @@ The following properties can be configured in the plugin. However, they are less
173
173
| dependencyCheckConnectionString | The connection string used to connect to the database, the %s will be replace with a name for the database | jdbc:h2:file:%s;AUTOCOMMIT=ON;MV_STORE=FALSE; |
174
174
| dependencyCheckDatabaseUser | The username used when connecting to the database. | dcuser |
175
175
| dependencyCheckDatabasePassword | The password used when connecting to the database. ||
176
+
| dependencyCheckHostedSuppressionsEnabled | Whether the hosted suppression file will be used. | true |
176
177
| dependencyCheckHostedSuppressionsForceUpdate | Whether the hosted suppressions file will update regardless of the `dependencyCheckAutoUpdate` setting. | false |
177
178
| dependencyCheckHostedSuppressionsUrl | The URL to a mirrored copy of the hosted suppressions file for internet-constrained environments. |https://jeremylong.github.io/DependencyCheck/suppressions/publishedSuppressions.xml|
178
179
| dependencyCheckHostedSuppressionsValidForHours | Sets the number of hours to wait before checking for new updates from the NVD. | 2 |
Copy file name to clipboardExpand all lines: src/main/scala/net/vonbuchholtz/sbt/dependencycheck/DependencyCheckKeys.scala
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -120,6 +120,7 @@ trait DependencyCheckKeys {
120
120
lazyvaldependencyCheckDatabaseUser= settingKey[Option[String]]("The username used when connecting to the database. ")
121
121
lazyvaldependencyCheckDatabasePassword= settingKey[Option[String]]("The password used when connecting to the database. ")
122
122
lazyvaldependencyCheckHostedSuppressionsForceUpdate= settingKey[Option[Boolean]]("Whether the hosted suppressions file will update regardless of the `dependencyCheckAutoUpdate` setting.")
123
+
lazyvaldependencyCheckHostedSuppressionsEnabled= settingKey[Option[Boolean]]("Whether the hosted suppression file will be used.")
123
124
lazyvaldependencyCheckHostedSuppressionsUrl= settingKey[Option[URL]]("The URL to a mirrored copy of the hosted suppressions file for internet-constrained environments.")
124
125
lazyvaldependencyCheckHostedSuppressionsValidForHours= settingKey[Option[Int]]("Sets the number of hours to wait before checking for new updates from the NVD.")
0 commit comments