mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-13 23:06:54 +10:00
87 lines
3.1 KiB
XML
87 lines
3.1 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.5.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>pinpoint-plugins</artifactId>
|
|
<name>pinpoint-plugins</name>
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>httpclient4</module>
|
|
<module>jdbc-driver</module>
|
|
<module>jdk-http</module>
|
|
<module>redis</module>
|
|
<module>servlet</module>
|
|
<module>tomcat</module>
|
|
<module>json-lib</module>
|
|
</modules>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.navercorp.pinpoint</groupId>
|
|
<artifactId>pinpoint-httpclient4-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.navercorp.pinpoint</groupId>
|
|
<artifactId>pinpoint-jdbc-driver-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.navercorp.pinpoint</groupId>
|
|
<artifactId>pinpoint-jdk-http-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.navercorp.pinpoint</groupId>
|
|
<artifactId>pinpoint-redis-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<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-json-lib-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>2.5.3</version>
|
|
<configuration>
|
|
<descriptors>
|
|
<descriptor>assembly.xml</descriptor>
|
|
</descriptors>
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>create-zip</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|