mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-18 01:06:03 +10:00
116 lines
4.4 KiB
XML
116 lines
4.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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.nhn.pinpoint</groupId>
|
|
<artifactId>pinpoint-profiler-optional</artifactId>
|
|
<version>1.0.1</version>
|
|
<name>pinpoint profiler optional</name>
|
|
<description>pinpoint profiler optional package</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.nhn.pinpoint</groupId>
|
|
<artifactId>pinpoint-profiler</artifactId>
|
|
<version>1.0.2-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.nhn.pinpoint</groupId>
|
|
<artifactId>pinpoint-commons</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.nhn.pinpoint</groupId>
|
|
<artifactId>pinpoint-bootstrap</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.nhn.pinpoint</groupId>
|
|
<artifactId>pinpoint-rpc</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.nhn.pinpoint</groupId>
|
|
<artifactId>pinpoint-thrift</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>${basedir}/src/main/java</directory>
|
|
<excludes>
|
|
<exclude>**/*.java</exclude>
|
|
</excludes>
|
|
</resource>
|
|
<resource>
|
|
<filtering>true</filtering>
|
|
<directory>${basedir}/src/main/resources</directory>
|
|
</resource>
|
|
</resources>
|
|
<testResources>
|
|
<testResource>
|
|
<directory>${basedir}/src/test/java</directory>
|
|
<excludes>
|
|
<exclude>**/*.java</exclude>
|
|
</excludes>
|
|
</testResource>
|
|
<testResource>
|
|
<filtering>true</filtering>
|
|
<directory>${basedir}/src/test/resources</directory>
|
|
</testResource>
|
|
</testResources>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>2.6</version>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.5.1</version>
|
|
<inherited>true</inherited>
|
|
<configuration>
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
<debug>${compiler-debug}</debug>
|
|
<optimize>true</optimize>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.4</version>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.12.4</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
<version>2.5.2</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.atlassian.maven.plugins</groupId>
|
|
<artifactId>maven-clover2-plugin</artifactId>
|
|
<version>3.0.2</version>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
<jdk>1.6</jdk>
|
|
<generateXml>true</generateXml>
|
|
<generateHtml>true</generateHtml>
|
|
<generateHistorical>false</generateHistorical>
|
|
<licenseLocation>clover.license</licenseLocation>
|
|
<singleCloverDatabase>false</singleCloverDatabase>
|
|
<includesTestSourceRoots>false</includesTestSourceRoots>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |