quarkus-microprofile-tck-rest-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkiverse.microprofile</groupId> <artifactId>quarkus-microprofile-tck-rest-client</artifactId> <version>3.4.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.quarkiverse.microprofile</groupId> <artifactId>quarkus-microprofile-tck</artifactId> <version>3.4.0</version> </parent> <artifactId>quarkus-microprofile-tck-rest-client</artifactId> <name>Quarkus - MicroProfile - TCK - REST Client</name> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <io.quarkus.arquillian.copy-fields>true</io.quarkus.arquillian.copy-fields> <org.eclipse.microprofile.rest.client.tck.timeoutCushion>90000</org.eclipse.microprofile.rest.client.tck.timeoutCushion> </systemPropertyVariables> <dependenciesToScan> <dependency>org.eclipse.microprofile.rest.client:microprofile-rest-client-tck</dependency> </dependenciesToScan> <excludes> <!-- @ConversationScoped is not part of MP --> <exclude>org.eclipse.microprofile.rest.client.tck.cditests.HasConversationScopeTest</exclude> <!-- @SessionScoped requires Servlet which is not available in MP --> <exclude>org.eclipse.microprofile.rest.client.tck.cditests.HasSessionScopeTest</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>uk.co.automatictester</groupId> <artifactId>wiremock-maven-plugin</artifactId> <version>${wiremock.plugin.version}</version> <dependencies> <!-- plugin defines "wiremock" artifactId (in provided scope), not the preferred "wiremock-jre8" which cannot be forced here, see https://issues.apache.org/jira/browse/MNG-6222 --> <dependency> <groupId>com.github.tomakehurst</groupId> <artifactId>wiremock</artifactId> <version>${wiremock.jre8.version}</version> </dependency> </dependencies> <executions> <execution> <phase>process-test-classes</phase> <goals> <goal>run</goal> </goals> <configuration> <dir>target/classes</dir> <params>--port=8765 --verbose</params> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>io.quarkiverse.microprofile</groupId> <artifactId>quarkus-microprofile</artifactId> </dependency> <dependency> <groupId>org.eclipse.microprofile.rest.client</groupId> <artifactId>microprofile-rest-client-tck</artifactId> <version>${microprofile.rest-client.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> </exclusion> <exclusion> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlets</artifactId> </exclusion> <exclusion> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </exclusion> <exclusion> <groupId>org.checkerframework</groupId> <artifactId>checker-qual</artifactId> </exclusion> <exclusion> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </exclusion> </exclusions> </dependency> <!-- Required because https://github.com/eclipse/microprofile-rest-client/issues/346 https://github.com/eclipse/microprofile-rest-client/issues/341 --> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>4.0.1</version> </dependency> </dependencies> </project>