Skip to content

Commit

Permalink
build: release 10.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylong committed Jul 2, 2024
1 parent a77ce55 commit 0b17449
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'org.owasp:dependency-check-gradle:9.2.0'
classpath 'org.owasp:dependency-check-gradle:10.0.0'
}
}
Expand Down Expand Up @@ -86,7 +86,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'org.owasp:dependency-check-gradle:9.2.0'
classpath 'org.owasp:dependency-check-gradle:10.0.0'
}
}
Expand All @@ -103,7 +103,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'org.owasp:dependency-check-gradle:9.2.0'
classpath 'org.owasp:dependency-check-gradle:10.0.0'
}
}
Expand Down Expand Up @@ -132,7 +132,7 @@ subprojects {

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

allprojects {
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/

ext {
odcVersion = '9.2.0'
odcVersion = '10.0.0'
openVulnClientVersion = '5.1.1'
slackWebhookVersion = '1.4.0'
spockCoreVersion = '2.3-groovy-3.0'
Expand Down Expand Up @@ -168,8 +168,8 @@ publishing {
maven {
url "https://oss.sonatype.org/service/local/staging/deploy/maven2"
credentials {
username sonatypeUsername
password sonatypePassword
username project.findProperty('sonatypeUsernames') ?: System.getenv("SONATYPE_USER")
password project.findProperty('sonatypePasswords') ?: System.getenv("SONATYPE_PASSWORD")
}
}
}
Expand Down
2 changes: 0 additions & 2 deletions gradle.properties

This file was deleted.

0 comments on commit 0b17449

Please sign in to comment.