integration-tests
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.resteasy.microprofile</groupId> <artifactId>integration-tests</artifactId> <version>3.0.1.Final</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ JBoss, Home of Professional Open Source. ~ ~ Copyright 2021 Red Hat, Inc., and individual contributors ~ as indicated by the @author tags. ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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"> <parent> <artifactId>testsuite</artifactId> <groupId>org.jboss.resteasy.microprofile</groupId> <version>3.0.1.Final</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>integration-tests</artifactId> <name>RESTEasy MicroProfile: Integration Tests</name> <dependencies> <dependency> <groupId>jakarta.enterprise</groupId> <artifactId>jakarta.enterprise.cdi-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>jakarta.enterprise.concurrent</groupId> <artifactId>jakarta.enterprise.concurrent-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>jakarta.json.bind</groupId> <artifactId>jakarta.json.bind-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>jakarta.ws.rs</groupId> <artifactId>jakarta.ws.rs-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.smallrye.config</groupId> <artifactId>smallrye-config</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-client-vertx</artifactId> <version>${version.org.jboss.resteasy}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-client</artifactId> <version>${version.resteasy.testsuite}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-client-api</artifactId> <version>${version.resteasy.testsuite}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-core-spi</artifactId> <version>${version.resteasy.testsuite}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-core</artifactId> <version>${version.resteasy.testsuite}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-multipart-provider</artifactId> <version>${version.resteasy.testsuite}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${version.org.junit}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.arquillian.junit5</groupId> <artifactId>arquillian-junit5-container</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.microprofile.config</groupId> <artifactId>microprofile-config-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse</groupId> <artifactId>yasson</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.parsson</groupId> <artifactId>parsson</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss</groupId> <artifactId>jboss-dmr</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-json-binding-provider</artifactId> <scope>test</scope> <version>${version.resteasy.testsuite}</version> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-json-p-provider</artifactId> <scope>test</scope> <version>${version.resteasy.testsuite}</version> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>arquillian-utils</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.resteasy.microprofile</groupId> <artifactId>microprofile-rest-client</artifactId> <scope>test</scope> <version>${version.resteasy.microprofile.testsuite}</version> </dependency> <dependency> <groupId>org.jboss.resteasy.microprofile</groupId> <artifactId>microprofile-rest-client-base</artifactId> <scope>test</scope> <version>${version.resteasy.microprofile.testsuite}</version> </dependency> <dependency> <groupId>org.eclipse.microprofile.rest.client</groupId> <artifactId>microprofile-rest-client-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.resteasy.microprofile</groupId> <artifactId>microprofile-config</artifactId> <scope>test</scope> <version>${version.resteasy.microprofile.testsuite}</version> </dependency> <!-- Required until WFARQ-201 is resolved --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.wildfly.arquillian</groupId> <artifactId>wildfly-arquillian-container-managed</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.wildfly.arquillian</groupId> <artifactId>wildfly-testing-tools</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <jboss.home>${jboss.home}</jboss.home> <java.io.tmpdir>${project.build.directory}</java.io.tmpdir> </systemPropertyVariables> </configuration> <executions> <execution> <id>default-test</id> <goals> <goal>test</goal> </goals> <phase>test</phase> <configuration> <classpathDependencyExcludes> <exclude>org.jboss.resteasy:resteasy-client-vertx</exclude> </classpathDependencyExcludes> <excludedGroups>vertx</excludedGroups> </configuration> </execution> <execution> <id>vertx-tests</id> <goals> <goal>test</goal> </goals> <phase>test</phase> <configuration> <groups>vertx</groups> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>