Skip to content

Commit

Permalink
don't use test keystore for vaadin (open-telemetry#11679)
Browse files Browse the repository at this point in the history
  • Loading branch information
SylvainJuge committed Jun 28, 2024
1 parent 45f4f17 commit 4fcefa4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions conventions/src/main/kotlin/otel.java-conventions.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,10 @@ tasks.withType<Test>().configureEach {

val trustStore = project(":testing-common").file("src/misc/testing-keystore.p12")
// Work around payara not working when this is set for some reason.
// Don't set for camel as we have tests that interact with AWS and need normal trustStore
if (project.name != "jaxrs-2.0-payara-testing" && project.description != "camel-2-20") {
// Don't set for:
// - camel as we have tests that interact with AWS and need normal trustStore
// - vaadin as tests need to be able to download nodejs when not cached in ~/.vaadin/
if (project.name != "jaxrs-2.0-payara-testing" && !project.path.contains("vaadin") && project.description != "camel-2-20") {
jvmArgumentProviders.add(KeystoreArgumentsProvider(trustStore))
}

Expand Down

0 comments on commit 4fcefa4

Please sign in to comment.