Skip to content

Commit

Permalink
Skip OWASP dependencyCheck on test modules (#5383)
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-berg authored Apr 15, 2023
1 parent 75b83db commit d0f78b0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions exporters/otlp/testing-internal/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,8 @@ dependencies {
implementation("io.github.netmikey.logunit:logunit-jul")
implementation("org.assertj:assertj-core")
}

// Skip OWASP dependencyCheck task on test module
dependencyCheck {
skip = true
}
5 changes: 5 additions & 0 deletions integration-tests/otlp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,8 @@ tasks {
dependsOn(testing.suites)
}
}

// Skip OWASP dependencyCheck task on test module
dependencyCheck {
skip = true
}
5 changes: 5 additions & 0 deletions integration-tests/tracecontext/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,8 @@ tasks {
jvmArgs("-Dio.opentelemetry.testArchive=${shadowJar.get().archiveFile.get().asFile.absolutePath}")
}
}

// Skip OWASP dependencyCheck task on test module
dependencyCheck {
skip = true
}

0 comments on commit d0f78b0

Please sign in to comment.