smallrye-mutiny-vertx-web-api-service
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.smallrye.reactive</groupId> <artifactId>smallrye-mutiny-vertx-web-api-service</artifactId> <version>3.18.1</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.reactive</groupId> <artifactId>vertx-mutiny-clients</artifactId> <version>3.18.1</version> </parent> <artifactId>smallrye-mutiny-vertx-web-api-service</artifactId> <name>SmallRye Mutiny - Vert.x Web API Service</name> <properties> <gen-source-groupId>io.vertx</gen-source-groupId> <gen-source-artifactId>vertx-web-api-service</gen-source-artifactId> <gen.output>${project.build.directory}/sources/java</gen.output> </properties> <dependencies> <!-- Generation source --> <dependency> <groupId>${gen-source-groupId}</groupId> <artifactId>${gen-source-artifactId}</artifactId> <version>${vertx.version}</version> </dependency> <!-- Dependencies --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>smallrye-mutiny-vertx-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>smallrye-mutiny-vertx-web</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <configuration> <includeGroupIds>${gen-source-groupId}</includeGroupIds> <includeArtifactIds>${gen-source-artifactId}</includeArtifactIds> <classifier>sources</classifier> <includeTypes>jar</includeTypes> </configuration> <executions> <!-- Unpack java sources to target/java-sources --> <execution> <id>unpack-java</id> <phase>generate-sources</phase> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <includes>io/vertx/**/*.java</includes> <excludes>**/impl/**/*.java</excludes> <outputDirectory>${gen.output}</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>io.smallrye.mutiny.vertx.web.api.service</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.bsc.maven</groupId> <artifactId>maven-processor-plugin</artifactId> <version>5.1-jdk8</version> <configuration> <systemProperties> <java.util.logging.SimpleFormatter.format>%4$s: %3$s - %5$s %6$s%n </java.util.logging.SimpleFormatter.format> <mvel2.disable.jit>true</mvel2.disable.jit> </systemProperties> </configuration> <executions> <!-- Run the annotation processor on java sources and generate the API --> <execution> <id>generate-api</id> <goals> <goal>process</goal> </goals> <phase>generate-sources</phase> <configuration> <sourceDirectory>${project.build.directory}/sources/java</sourceDirectory> <processors> <processor>io.vertx.codegen.CodeGenProcessor</processor> </processors> <optionMap> <codegen.generators>mutiny</codegen.generators> </optionMap> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>windows</id> <activation> <os> <family>Windows</family> </os> </activation> <properties> <maven.test.skip>true</maven.test.skip> </properties> </profile> </profiles> </project>