This is an automated email from the ASF dual-hosted git repository. johndament pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/cxf.git
commit 31e60f11f546e790510a16eb8c6a7f6a329dee7c Author: John D. Ament <[email protected]> AuthorDate: Tue Dec 19 20:11:28 2017 -0500 [CXF-7579] Fixing POM dependencies. --- systests/microprofile/client/weld/pom.xml | 39 ++++--------- systests/microprofile/pom.xml | 94 +++++++++++++++++++++++++++++++ 2 files changed, 104 insertions(+), 29 deletions(-) diff --git a/systests/microprofile/client/weld/pom.xml b/systests/microprofile/client/weld/pom.xml index 0235119..91edf98 100644 --- a/systests/microprofile/client/weld/pom.xml +++ b/systests/microprofile/client/weld/pom.xml @@ -28,78 +28,59 @@ <modelVersion>4.0.0</modelVersion> <artifactId>cxf-systests-microprofile-weld</artifactId> - <name>Apache CXF System Tests - MicroProfile Rest Client TCK</name> - <properties> - <cxf.geronimo.config.version>1.0</cxf.geronimo.config.version> - <cxf.wiremock.params>--port=8765</cxf.wiremock.params> - <cxf.weld.se.version>2.4.5.Final</cxf.weld.se.version> - <cxf.arquillian.weld.container.version>2.0.0.Final</cxf.arquillian.weld.container.version> - <cxf.johnzon.tck.version>1.1.3</cxf.johnzon.tck.version> - <cxf.json.api.1.1.version>1.1</cxf.json.api.1.1.version> - <cxf.arquillian.version>1.1.14.Final</cxf.arquillian.version> - </properties> + <name>Apache CXF System Tests - MicroProfile Rest Client TCK on Weld</name> <dependencies> <dependency> <groupId>org.jboss.arquillian.testng</groupId> <artifactId>arquillian-testng-container</artifactId> - <version>${cxf.arquillian.version}</version> - <scope>test</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> - <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.weld.se</groupId> <artifactId>weld-se-core</artifactId> - <version>${cxf.weld.se.version}</version> - <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.arquillian.container</groupId> <artifactId>arquillian-weld-embedded</artifactId> - <version>${cxf.arquillian.weld.container.version}</version> - <scope>test</scope> + </dependency> + <dependency> + <groupId>javax.ws.rs</groupId> + <artifactId>javax.ws.rs-api</artifactId> </dependency> <dependency> <groupId>org.eclipse.microprofile.rest.client</groupId> - <artifactId>microprofile-rest-client-tck</artifactId> + <artifactId>microprofile-rest-client-api</artifactId> </dependency> <dependency> <groupId>org.apache.johnzon</groupId> <artifactId>johnzon-core</artifactId> - <version>${cxf.johnzon.tck.version}</version> - <scope>test</scope> </dependency> <dependency> <groupId>javax.json</groupId> <artifactId>javax.json-api</artifactId> - <version>${cxf.json.api.1.1.version}</version> - <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> - <scope>test</scope> </dependency> <dependency> <groupId>org.apache.geronimo.config</groupId> <artifactId>geronimo-config-impl</artifactId> - <version>${cxf.geronimo.config.version}</version> - <scope>test</scope> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-rs-mp-client</artifactId> - <version>${project.version}</version> - <scope>test</scope> </dependency> <dependency> <groupId>org.apache.johnzon</groupId> <artifactId>johnzon-jsonb</artifactId> - <version>${cxf.johnzon.tck.version}</version> - <scope>test</scope> + </dependency> + <dependency> + <groupId>org.eclipse.microprofile.rest.client</groupId> + <artifactId>microprofile-rest-client-tck</artifactId> </dependency> </dependencies> <build> diff --git a/systests/microprofile/pom.xml b/systests/microprofile/pom.xml index f8ff337..c35fe4b 100644 --- a/systests/microprofile/pom.xml +++ b/systests/microprofile/pom.xml @@ -29,6 +29,100 @@ <artifactId>cxf-systests</artifactId> <version>3.2.2-SNAPSHOT</version> </parent> + <properties> + <cxf.geronimo.config.version>1.0</cxf.geronimo.config.version> + <cxf.microprofile.rest.client.version>1.0</cxf.microprofile.rest.client.version> + <cxf.wiremock.params>--port=8765</cxf.wiremock.params> + <cxf.weld.se.version>2.4.5.Final</cxf.weld.se.version> + <cxf.arquillian.weld.container.version>2.0.0.Final</cxf.arquillian.weld.container.version> + <cxf.johnzon.tck.version>1.1.3</cxf.johnzon.tck.version> + <cxf.json.api.1.1.version>1.1</cxf.json.api.1.1.version> + <cxf.arquillian.version>1.1.14.Final</cxf.arquillian.version> + <cxf.slf4j.version>1.7.25</cxf.slf4j.version> + <cxf.commons.logging.version>1.2</cxf.commons.logging.version> + <cxf.javax.ws.rs.version>2.1</cxf.javax.ws.rs.version> + </properties> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.jboss.arquillian.testng</groupId> + <artifactId>arquillian-testng-container</artifactId> + <version>${cxf.arquillian.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + <version>${cxf.commons.logging.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>javax.ws.rs</groupId> + <artifactId>javax.ws.rs-api</artifactId> + <version>${cxf.javax.ws.rs.version}</version> + </dependency> + <dependency> + <groupId>org.jboss.weld.se</groupId> + <artifactId>weld-se-core</artifactId> + <version>${cxf.weld.se.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.jboss.arquillian.container</groupId> + <artifactId>arquillian-weld-embedded</artifactId> + <version>${cxf.arquillian.weld.container.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.eclipse.microprofile.rest.client</groupId> + <artifactId>microprofile-rest-client-api</artifactId> + <version>${cxf.microprofile.rest.client.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.johnzon</groupId> + <artifactId>johnzon-core</artifactId> + <version>${cxf.johnzon.tck.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>javax.json</groupId> + <artifactId>javax.json-api</artifactId> + <version>${cxf.json.api.1.1.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-jdk14</artifactId> + <version>${cxf.slf4j.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.geronimo.config</groupId> + <artifactId>geronimo-config-impl</artifactId> + <version>${cxf.geronimo.config.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.cxf</groupId> + <artifactId>cxf-rt-rs-mp-client</artifactId> + <version>${project.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.johnzon</groupId> + <artifactId>johnzon-jsonb</artifactId> + <version>${cxf.johnzon.tck.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.eclipse.microprofile.rest.client</groupId> + <artifactId>microprofile-rest-client-tck</artifactId> + <version>${cxf.microprofile.rest.client.version}</version> + <scope>test</scope> + </dependency> + </dependencies> + </dependencyManagement> <modules> <module>client/weld</module> </modules> -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
