microsoft/gctoolkit
Publicmirrored from https://github.com/microsoft/gctoolkitAvailable
vertx/pom.xml
49lines · modeblame
3ce8e8bbKirk Pepperdine4 years ago | 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> | |
5509b357Kirk Pepperdine4 years ago | 6 | <groupId>com.microsoft.gctoolkit</groupId> |
8d88dfc6Bruno Borges4 years ago | 7 | <artifactId>gctoolkit</artifactId> |
1854398eGit1 years ago | 8 | <version>3.1.0-SNAPSHOT</version> |
8d88dfc6Bruno Borges4 years ago | 9 | <relativePath>../pom.xml</relativePath> |
3ce8e8bbKirk Pepperdine4 years ago | 10 | </parent> |
| 11 | | |
ca43cad5Kirk Pepperdine4 years ago | 12 | <artifactId>gctoolkit-vertx</artifactId> |
f98e7f7aAnant Kurapati4 years ago | 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> | |
3ce8e8bbKirk Pepperdine4 years ago | 16 | |
| 17 | <dependencies> | |
| 18 | <dependency> | |
5509b357Kirk Pepperdine4 years ago | 19 | <groupId>com.microsoft.gctoolkit</groupId> |
ca43cad5Kirk Pepperdine4 years ago | 20 | <artifactId>gctoolkit-api</artifactId> |
3ce8e8bbKirk Pepperdine4 years ago | 21 | </dependency> |
| 22 | <dependency> | |
| 23 | <groupId>io.vertx</groupId> | |
| 24 | <artifactId>vertx-core</artifactId> | |
2f14bd62David Grieve1 years ago | 25 | <version>4.5.8</version> |
3ce8e8bbKirk Pepperdine4 years ago | 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> | |
2f14bd62David Grieve1 years ago | 38 | <build> |
| 39 | <plugins> | |
| 40 | <plugin> | |
| 41 | <groupId>org.apache.maven.plugins</groupId> | |
| 42 | <artifactId>maven-javadoc-plugin</artifactId> | |
| 43 | <configuration> | |
| 44 | <skip>true</skip> | |
| 45 | </configuration> | |
| 46 | </plugin> | |
| 47 | </plugins> | |
| 48 | </build> | |
f98e7f7aAnant Kurapati4 years ago | 49 | </project> |