smallrye-open-api-vertx
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.smallrye</groupId> <artifactId>smallrye-open-api-vertx</artifactId> <version>4.1.0-alpha3</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.smallrye</groupId> <artifactId>smallrye-open-api-parent</artifactId> <version>4.1.0-alpha3</version> </parent> <artifactId>smallrye-open-api-vertx</artifactId> <name>SmallRye: OpenAPI extension - Vert.x</name> <dependencies> <!-- SmallRye core implementation --> <dependency> <groupId>io.smallrye</groupId> <artifactId>smallrye-open-api-core</artifactId> </dependency> <!-- Third Party Libraries --> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging</artifactId> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-annotations</artifactId> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-processor</artifactId> </dependency> <!-- Test Only Dependencies --> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-reactive-routes</artifactId> <version>${version.quarkus}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.skyscreamer</groupId> <artifactId>jsonassert</artifactId> <scope>test</scope> </dependency> <!-- Depend on core tests --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>smallrye-open-api-core</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>io.smallrye.config</groupId> <artifactId>smallrye-config</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <java.util.logging.config.file>${project.build.testOutputDirectory}/logging.properties</java.util.logging.config.file> </systemPropertyVariables> <redirectTestOutputToFile>true</redirectTestOutputToFile> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>coverage</id> <properties> <argLine>@{jacocoArgLine}</argLine> </properties> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> </project>