mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-10 21:35:52 +10:00
38 lines
1.3 KiB
XML
38 lines
1.3 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>pom</artifactId>
|
|
<version>1.1.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>pinpoint-plugins</artifactId>
|
|
<name>pinpoint-plugins</name>
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>servlet</module>
|
|
<module>tomcat</module>
|
|
<module>redis</module>
|
|
</modules>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.navercorp.pinpoint</groupId>
|
|
<artifactId>pinpoint-servlet-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.navercorp.pinpoint</groupId>
|
|
<artifactId>pinpoint-tomcat-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.navercorp.pinpoint</groupId>
|
|
<artifactId>pinpoint-redis-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|