vertx-hazelcast
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.vertx</groupId> <artifactId>vertx-hazelcast</artifactId> <version>5.0.0.CR5</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.vertx</groupId> <artifactId>vertx-hazelcast-parent</artifactId> <version>5.0.0.CR5</version> </parent> <artifactId>vertx-hazelcast</artifactId> <version>5.0.0.CR5</version> <name>Vert.x Hazelcast Cluster Manager</name> <properties> <asciidoc.dir>${project.basedir}/src/main/asciidoc</asciidoc.dir> </properties> <dependencies> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-codegen-api</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-codegen-json</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-docgen-api</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-health-check</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.hazelcast</groupId> <artifactId>hazelcast</artifactId> <version>${hazelcast.version}</version> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-compile</id> <configuration> <annotationProcessorPaths> <annotationProcessorPath> <groupId>io.vertx</groupId> <artifactId>vertx-codegen</artifactId> <classifier>processor</classifier> </annotationProcessorPath> <annotationProcessorPath> <groupId>io.vertx</groupId> <artifactId>vertx-docgen-processor</artifactId> <classifier>processor</classifier> </annotationProcessorPath> </annotationProcessorPaths> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/it/**/*Test.java</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <id>core</id> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <phase>integration-test</phase> <configuration> <includes> <include>**/it/core/*Test.java</include> </includes> <classpathDependencyExcludes> <classpathDependencyExclude>io.vertx:vertx-core:test-jar</classpathDependencyExclude> </classpathDependencyExcludes> </configuration> </execution> <execution> <id>lite-members</id> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <phase>integration-test</phase> <configuration> <includes> <include>**/it/litemembers/*Test.java</include> </includes> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>package-docs</id> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>test-jpms</id> <properties> <vertx.surefire.useModulePath>true</vertx.surefire.useModulePath> <vertx.surefire.opensModule>com.hazelcast.core</vertx.surefire.opensModule> </properties> </profile> </profiles> </project>