This is an automated email from the ASF dual-hosted git repository. ema pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/cxf.git
commit 2a9fff8ebb48f040e3c5092d0084470298fba61f Author: Jim Ma <[email protected]> AuthorDate: Mon Oct 31 09:36:52 2022 +0800 [CXF-8758]:Add wiremock-standalone test dependency to fix more systests --- systests/microprofile/client/async/pom.xml | 16 +++++++++++++++- systests/microprofile/client/nocdi/pom.xml | 16 +++++++++++++++- 2 files changed, 30 insertions(+), 2 deletions(-) diff --git a/systests/microprofile/client/async/pom.xml b/systests/microprofile/client/async/pom.xml index 7e9edd51fb..1fb081805a 100644 --- a/systests/microprofile/client/async/pom.xml +++ b/systests/microprofile/client/async/pom.xml @@ -113,6 +113,19 @@ <version>${cxf.johnzon.version}</version> <classifier>jakarta</classifier> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>*</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.apache.johnzon</groupId> + <artifactId>johnzon-mapper</artifactId> + <version>${cxf.johnzon.version}</version> + <classifier>jakarta</classifier> + <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.microprofile.rest.client</groupId> @@ -130,9 +143,10 @@ </exclusion> </exclusions> </dependency> + <!--TODO: after wiremock jakarta version is ready change back to com.github.tomakehurst:wiremock --> <dependency> <groupId>com.github.tomakehurst</groupId> - <artifactId>wiremock</artifactId> + <artifactId>wiremock-standalone</artifactId> <version>${cxf.wiremock.version}</version> <scope>test</scope> <exclusions> diff --git a/systests/microprofile/client/nocdi/pom.xml b/systests/microprofile/client/nocdi/pom.xml index 5effcc3630..0ef1e9ee6e 100644 --- a/systests/microprofile/client/nocdi/pom.xml +++ b/systests/microprofile/client/nocdi/pom.xml @@ -101,6 +101,19 @@ <version>${cxf.johnzon.version}</version> <classifier>jakarta</classifier> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>*</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.apache.johnzon</groupId> + <artifactId>johnzon-mapper</artifactId> + <version>${cxf.johnzon.version}</version> + <classifier>jakarta</classifier> + <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.microprofile.rest.client</groupId> @@ -126,9 +139,10 @@ </exclusion> </exclusions> </dependency> + <!--TODO: after wiremock jakarta version is ready change back to com.github.tomakehurst:wiremock --> <dependency> <groupId>com.github.tomakehurst</groupId> - <artifactId>wiremock</artifactId> + <artifactId>wiremock-standalone</artifactId> <version>${cxf.wiremock.version}</version> <scope>test</scope> <exclusions>
