mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-09 04:46:06 +10:00
42 lines
1.4 KiB
XML
42 lines
1.4 KiB
XML
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.navercorp.pinpoint</groupId>
|
|
<artifactId>pinpoint</artifactId>
|
|
<relativePath>../..</relativePath>
|
|
<version>1.7.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>pinpoint-vertx-plugin</artifactId>
|
|
<name>pinpoint-vertx-plugin</name>
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
<jdk.version>1.6</jdk.version>
|
|
<jdk.home>${env.JAVA_8_HOME}</jdk.home>
|
|
<sniffer.artifactid>java18</sniffer.artifactid>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.navercorp.pinpoint</groupId>
|
|
<artifactId>pinpoint-bootstrap-core</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.navercorp.pinpoint</groupId>
|
|
<artifactId>pinpoint-annotations</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/io.vertx/vertx-core -->
|
|
<dependency>
|
|
<groupId>io.vertx</groupId>
|
|
<artifactId>vertx-core</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|