microsoft/gctoolkit

Public

mirrored from https://github.com/microsoft/gctoolkitAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
early-access

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

vertx/pom.xml

49lines · modeblame

3ce8e8bbKirk Pepperdine4 years ago1<?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 ago6<groupId>com.microsoft.gctoolkit</groupId>
8d88dfc6Bruno Borges4 years ago7<artifactId>gctoolkit</artifactId>
1854398eGit1 years ago8<version>3.1.0-SNAPSHOT</version>
8d88dfc6Bruno Borges4 years ago9<relativePath>../pom.xml</relativePath>
3ce8e8bbKirk Pepperdine4 years ago10</parent>
11
ca43cad5Kirk Pepperdine4 years ago12<artifactId>gctoolkit-vertx</artifactId>
f98e7f7aAnant Kurapati4 years ago13<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 ago16
17<dependencies>
18<dependency>
5509b357Kirk Pepperdine4 years ago19<groupId>com.microsoft.gctoolkit</groupId>
ca43cad5Kirk Pepperdine4 years ago20<artifactId>gctoolkit-api</artifactId>
3ce8e8bbKirk Pepperdine4 years ago21</dependency>
22<dependency>
23<groupId>io.vertx</groupId>
24<artifactId>vertx-core</artifactId>
2f14bd62David Grieve1 years ago25<version>4.5.8</version>
3ce8e8bbKirk Pepperdine4 years ago26</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 ago38<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 ago49</project>