vertx-codegen
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.vertx</groupId> <artifactId>vertx-codegen</artifactId> <version>5.0.0.CR8</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"> <parent> <groupId>io.vertx</groupId> <artifactId>vertx-codegen-parent</artifactId> <version>5.0.0.CR8</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>vertx-codegen</artifactId> <version>5.0.0.CR8</version> <properties> <doc.skip>false</doc.skip> <asciidoc.dir>${project.basedir}/src/main/asciidoc</asciidoc.dir> </properties> <dependencies> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-codegen-processor</artifactId> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-codegen-json</artifactId> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>default-jar</id> <configuration> <excludes> <exclude>io/vertx/core/**</exclude> <exclude>io/vertx/codegen/testmodel/**</exclude> <exclude>com/acme/**</exclude> <exclude>examples/**</exclude> </excludes> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>package-others</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <attach>true</attach> <descriptors> <descriptor>src/main/assembly/processor.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>