Skip to content

Commit

Permalink
chore: release 9.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylong committed Dec 13, 2023
1 parent dbab886 commit 0329cd8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'org.owasp:dependency-check-gradle:9.0.4'
classpath 'org.owasp:dependency-check-gradle:9.0.5'
}
}
Expand Down Expand Up @@ -67,7 +67,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'org.owasp:dependency-check-gradle:9.0.4'
classpath 'org.owasp:dependency-check-gradle:9.0.5'
}
}
Expand All @@ -84,7 +84,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'org.owasp:dependency-check-gradle:9.0.4'
classpath 'org.owasp:dependency-check-gradle:9.0.5'
}
}
Expand Down Expand Up @@ -113,7 +113,7 @@ subprojects {

```kotlin
plugins {
id("org.owasp.dependencycheck") version "9.0.4" apply false
id("org.owasp.dependencycheck") version "9.0.5" apply false
}

allprojects {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/

ext {
odcVersion = '9.0.4'
odcVersion = '9.0.5'
openVulnClientVersion = '5.1.0'
slackWebhookVersion = '1.4.0'
spockCoreVersion = '2.3-groovy-3.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,8 @@ class NvdExtension {
* The number of hours to wait before checking for new updates from the NVD. The default is 4 hours.
*/
Integer validForHours
/**
* The NVD API endpoint URL; configuring this is uncommon.
*/
String endpoint;
}
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ abstract class ConfiguredTask extends DefaultTask {


settings.setStringIfNotEmpty(NVD_API_KEY, config.nvd.apiKey)
settings.setStringIfNotEmpty(NVD_API_ENDPOINT, config.nvd.endpoint)
settings.setIntIfNotNull(NVD_API_DELAY, config.nvd.delay)
settings.setIntIfNotNull(NVD_API_MAX_RETRY_COUNT, config.nvd.maxRetryCount)
settings.setIntIfNotNull(NVD_API_VALID_FOR_HOURS, config.nvd.validForHours);
Expand Down

0 comments on commit 0329cd8

Please sign in to comment.