microsoft/gctoolkit
Publicmirrored from https://github.com/microsoft/gctoolkitAvailable
vertx/pom.xml
50lines · modecode
| 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <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"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <parent> |
| 6 | <groupId>com.microsoft.gctoolkit</groupId> |
| 7 | <artifactId>gctoolkit</artifactId> |
| 8 | <version>3.6.0-SNAPSHOT</version> |
| 9 | <relativePath>../pom.xml</relativePath> |
| 10 | </parent> |
| 11 | |
| 12 | <artifactId>gctoolkit-vertx</artifactId> |
| 13 | <name>GCToolKit Vertx</name> |
| 14 | <description>Messaging backplane for connecting GC log parsers and JVM event consumers.</description> |
| 15 | <url>${project.parent.url}</url> |
| 16 | |
| 17 | <dependencies> |
| 18 | <dependency> |
| 19 | <groupId>com.microsoft.gctoolkit</groupId> |
| 20 | <artifactId>gctoolkit-api</artifactId> |
| 21 | </dependency> |
| 22 | <dependency> |
| 23 | <groupId>io.vertx</groupId> |
| 24 | <artifactId>vertx-core</artifactId> |
| 25 | <version>4.5.13</version> |
| 26 | </dependency> |
| 27 | <dependency> |
| 28 | <groupId>org.junit.jupiter</groupId> |
| 29 | <artifactId>junit-jupiter-api</artifactId> |
| 30 | <scope>test</scope> |
| 31 | </dependency> |
| 32 | <dependency> |
| 33 | <groupId>org.junit.jupiter</groupId> |
| 34 | <artifactId>junit-jupiter-engine</artifactId> |
| 35 | <scope>test</scope> |
| 36 | </dependency> |
| 37 | </dependencies> |
| 38 | <build> |
| 39 | <plugins> |
| 40 | <plugin> |
| 41 | <groupId>org.apache.maven.plugins</groupId> |
| 42 | <artifactId>maven-javadoc-plugin</artifactId> |
| 43 | <configuration> |
| 44 | <show>public</show> |
| 45 | <sourceFileIncludes>**/vertx/*.java</sourceFileIncludes> |
| 46 | </configuration> |
| 47 | </plugin> |
| 48 | </plugins> |
| 49 | </build> |
| 50 | </project> |
| 51 | |