This is an automated email from the ASF dual-hosted git repository. jlmonteiro pushed a commit to branch TOMEE-2689_MicroProfile3.0 in repository https://gitbox.apache.org/repos/asf/tomee.git
commit 83812d23512b2ab269435d21962f14202f281912 Author: Jean-Louis Monteiro <[email protected]> AuthorDate: Sun Sep 22 16:54:20 2019 -0700 move APIs and TCK to the last version for MicroProfile 3.0 --- pom.xml | 15 +++++++-------- .../tck/metrics/MicroProfileMetricsTCKObserver.java | 3 +-- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/pom.xml b/pom.xml index 0a72f18..03e1aa1 100644 --- a/pom.xml +++ b/pom.xml @@ -211,23 +211,22 @@ <version.shrinkwrap.resolver.bom>2.1.0</version.shrinkwrap.resolver.bom> <!-- Micro Profile --> - <microprofile.version>2.0</microprofile.version> + <microprofile.version>3.0</microprofile.version> <microprofile.config.version>1.3</microprofile.config.version> <microprofile.config.impl.version>1.2.1</microprofile.config.impl.version> <microprofile.jwt.version>1.1.1</microprofile.jwt.version> <microprofile.jwt.impl.version>${project.version}</microprofile.jwt.impl.version> - <!-- 1.1 Implementation not started yet --> - <microprofile.fault-tolerance.version>1.1.4</microprofile.fault-tolerance.version> + <microprofile.fault-tolerance.version>2.0.1</microprofile.fault-tolerance.version> <microprofile.fault-tolerance.impl.version>1.2.1</microprofile.fault-tolerance.impl.version> - <microprofile.health.version>1.0</microprofile.health.version> + <microprofile.health.version>2.1</microprofile.health.version> <microprofile.health.impl.version>1.0.1</microprofile.health.impl.version> - <microprofile.metrics.version>1.1.1</microprofile.metrics.version> + <microprofile.metrics.version>2.1.0</microprofile.metrics.version> <microprofile.metrics.impl.version>1.0.2</microprofile.metrics.impl.version> - <microprofile.rest-client.version>1.2.1</microprofile.rest-client.version> + <microprofile.rest-client.version>1.3.3</microprofile.rest-client.version> <microprofile.rest-client.impl.version>${cxf.version}</microprofile.rest-client.impl.version> - <microprofile.openapi.version>1.0.1</microprofile.openapi.version> + <microprofile.openapi.version>1.1.2</microprofile.openapi.version> <microprofile.openapi.impl.version>1.0.6</microprofile.openapi.impl.version> - <microprofile.opentracing.version>1.1</microprofile.opentracing.version> + <microprofile.opentracing.version>1.3.1</microprofile.opentracing.version> <microprofile.opentracing.impl.version>1.0.0</microprofile.opentracing.impl.version> <opentracing.api>0.31.0</opentracing.api> diff --git a/tck/microprofile-tck/metrics/src/test/java/org/apache/tomee/microprofile/tck/metrics/MicroProfileMetricsTCKObserver.java b/tck/microprofile-tck/metrics/src/test/java/org/apache/tomee/microprofile/tck/metrics/MicroProfileMetricsTCKObserver.java index 399b702..71c57c8 100644 --- a/tck/microprofile-tck/metrics/src/test/java/org/apache/tomee/microprofile/tck/metrics/MicroProfileMetricsTCKObserver.java +++ b/tck/microprofile-tck/metrics/src/test/java/org/apache/tomee/microprofile/tck/metrics/MicroProfileMetricsTCKObserver.java @@ -16,8 +16,7 @@ */ package org.apache.tomee.microprofile.tck.metrics; -import com.jayway.restassured.RestAssured; -import org.apache.openejb.arquillian.common.TomEEContainer; +import io.restassured.RestAssured; import org.jboss.arquillian.container.spi.event.container.AfterDeploy; import org.jboss.arquillian.core.api.annotation.Observes;
