quarkus-rest-common-deployment
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-rest-common-deployment</artifactId> <version>3.21.2</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>quarkus-rest-common-parent</artifactId> <groupId>io.quarkus</groupId> <version>3.21.2</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>quarkus-rest-common-deployment</artifactId> <name>Quarkus - REST - Common - Deployment</name> <dependencies> <dependency> <groupId>io.quarkus.resteasy.reactive</groupId> <artifactId>resteasy-reactive-common-processor</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-vertx-deployment</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-arc-deployment</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-mutiny-deployment</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-rest-common</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-rest-spi-deployment</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-security-spi</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-jsonp-deployment</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-compile</id> <configuration> <annotationProcessorPaths> <path> <groupId>io.quarkus</groupId> <artifactId>quarkus-extension-processor</artifactId> <version>${project.version}</version> </path> </annotationProcessorPaths> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <!-- Move SSE tests into separate execution as they seem to be flaky, probably due to resource constraints in CI --> <executions> <execution> <id>default-test</id> <configuration> <excludes> <exclude>%regex[.*Sse.*Test.*]</exclude> </excludes> </configuration> </execution> <execution> <id>sse</id> <phase>test</phase> <goals> <goal>test</goal> </goals> <configuration> <includes> <include>%regex[.*Sse.*Test.*]</include> </includes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>de.thetaphi</groupId> <artifactId>forbiddenapis</artifactId> </plugin> </plugins> </build> </project>