This is an automated email from the ASF dual-hosted git repository. aldettinger pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git
commit 9c22863c8b31fef91b92bc98f851951a22ecaa41 Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Wed Aug 7 11:47:32 2024 +0100 Add missing test scope to rest-assured --- cluster-leader-election/pom.xml | 1 + cxf-soap/pom.xml | 1 + health/pom.xml | 1 + 3 files changed, 3 insertions(+) diff --git a/cluster-leader-election/pom.xml b/cluster-leader-election/pom.xml index 20702c2..5290631 100644 --- a/cluster-leader-election/pom.xml +++ b/cluster-leader-election/pom.xml @@ -108,6 +108,7 @@ <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> diff --git a/cxf-soap/pom.xml b/cxf-soap/pom.xml index cb4c7fc..c728735 100644 --- a/cxf-soap/pom.xml +++ b/cxf-soap/pom.xml @@ -104,6 +104,7 @@ <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> diff --git a/health/pom.xml b/health/pom.xml index 09bfe5f..86a9591 100644 --- a/health/pom.xml +++ b/health/pom.xml @@ -103,6 +103,7 @@ <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> + <scope>test</scope> </dependency> </dependencies>