forked from wildfly/wildfly
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request wildfly#18166 from jamezp/WFLY-19589
[WFLY-19589] Upgrade the MicroProfile REST Client to 4.0 and the RESTEasy implementation to 3.0.0.Final.
- Loading branch information
Showing
10 changed files
with
390 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
testsuite/integration/microprofile-tck/rest-client/config/preview/module.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
|
||
<!-- | ||
~ Copyright The WildFly Authors | ||
~ SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
|
||
<module xmlns="urn:jboss:module:1.9" name="org.wiremock"> | ||
|
||
<resources> | ||
<resource-root path="wiremock.jar"/> | ||
<resource-root path="junit.jar"/> | ||
<resource-root path="jetty-http.jar"/> | ||
<resource-root path="jetty-io.jar"/> | ||
<resource-root path="jetty-server.jar"/> | ||
<resource-root path="jetty-util.jar"/> | ||
<resource-root path="httpclient5.jar"/> | ||
<resource-root path="httpcore5.jar"/> | ||
<resource-root path="httpcore5-h2.jar"/> | ||
<resource-root path="http2-common.jar"/> | ||
<resource-root path="http2-hpack.jar"/> | ||
</resources> | ||
|
||
<dependencies> | ||
<module name="org.apache.httpcomponents"/> | ||
<module name="org.apache.httpcomponents.core" export="true"/> | ||
<module name="com.google.guava"/> | ||
<module name="org.apache.commons.lang3"/> | ||
<module name="com.fasterxml.jackson.core.jackson-annotations"/> | ||
<module name="com.fasterxml.jackson.core.jackson-core"/> | ||
<module name="com.fasterxml.jackson.core.jackson-databind"/> | ||
<module name="com.fasterxml.jackson.datatype.jackson-datatype-jdk8"/> | ||
<module name="com.fasterxml.jackson.datatype.jackson-datatype-jsr310"/> | ||
<module name="org.jboss.weld.core"/> | ||
<module name="org.jboss.weld.spi"/> | ||
<module name="jakarta.enterprise.api"/> | ||
<module name="jakarta.inject.api"/> | ||
<module name="jakarta.annotation.api"/> | ||
<module name="jakarta.servlet.api"/> | ||
<module name="org.jboss.resteasy.resteasy-cdi" services="export" export="true"> | ||
<imports> | ||
<include path="META-INF"/> | ||
</imports> | ||
<exports> | ||
<include path="META-INF"/> | ||
</exports> | ||
</module> | ||
<module name="org.slf4j"/> | ||
</dependencies> | ||
</module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.