Skip to content

Commit

Permalink
add owasp dependency scan (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
vdonadze authored Jun 12, 2023
1 parent a06b09c commit 825a9c6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
18 changes: 15 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ plugins {
id 'signing'
id 'maven-publish'
id "io.github.gradle-nexus.publish-plugin" version "1.0.0"
id "org.owasp.dependencycheck" version "8.1.0"
}

group = 'com.exactpro.th2'
Expand All @@ -21,9 +22,20 @@ repositories {
}

dependencies {
testImplementation 'org.assertj:assertj-core:3.23.1'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
testImplementation 'org.assertj:assertj-core:3.24.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.2'
}

dependencyCheck {
formats=['SARIF', 'JSON', 'HTML']
failBuildOnCVSS=5

analyzers {
assemblyEnabled = false
nugetconfEnabled = false
nodeEnabled = false
}
}

test {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
# limitations under the License.
#

release_version = 0.1.1
release_version = 0.1.2
description = "Task managenet utility classes"
vcs_url = https://github.com/th2-net/th2-task-utils

0 comments on commit 825a9c6

Please sign in to comment.