testsuite
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dev.resteasy.junit.extension</groupId>
<artifactId>testsuite</artifactId>
<version>1.0.0.Alpha2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright The RESTEasy Authors
~ SPDX-License-Identifier: Apache-2.0
-->
<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>dev.resteasy.junit.extension</groupId>
<artifactId>resteasy-junit-extension-parent</artifactId>
<version>1.0.0.Alpha2</version>
</parent>
<artifactId>testsuite</artifactId>
<packaging>pom</packaging>
<name>RESTEasy JUnit 5: Test Suite</name>
<modules>
<module>wildfly-integration-tests</module>
</modules>
<properties>
<version.org.jboss.arquillian>1.9.1.Final</version.org.jboss.arquillian>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jboss.arquillian</groupId>
<artifactId>arquillian-bom</artifactId>
<version>${version.org.jboss.arquillian}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>dev.resteasy.junit.extension</groupId>
<artifactId>resteasy-junit-extension</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Do not deploy tests -->
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<profiles/>
</project>