mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-10 13:26:16 +10:00
86 lines
2.3 KiB
XML
86 lines
2.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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<organization>
|
|
<name>Naver Corporation</name>
|
|
<url>http://www.navercorp.com/</url>
|
|
</organization>
|
|
<groupId>com.navercorp.pinpoint</groupId>
|
|
<artifactId>pinpoint-quickstart-web</artifactId>
|
|
<name>Pinpoint Web QuickStart </name>
|
|
<version>${maven.pinpoint.version}</version>
|
|
<packaging>war</packaging>
|
|
|
|
<properties>
|
|
<encoding>UTF-8</encoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.navercorp.pinpoint</groupId>
|
|
<artifactId>pinpoint-web</artifactId>
|
|
<version>${project.version}</version>
|
|
<type>war</type>
|
|
</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>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<configuration>
|
|
<overlays>
|
|
<overlay>
|
|
<groupId>com.navercorp.pinpoint</groupId>
|
|
<artifactId>pinpoint-web</artifactId>
|
|
</overlay>
|
|
</overlays>
|
|
<webappDirectory>target/deploy</webappDirectory>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>properties-maven-plugin</artifactId>
|
|
<version>1.0-alpha-2</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>read-project-properties</goal>
|
|
</goals>
|
|
<configuration>
|
|
<files>
|
|
<file>${basedir}/../conf/quickstart.properties</file>
|
|
</files>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.tomcat.maven</groupId>
|
|
<artifactId>tomcat7-maven-plugin</artifactId>
|
|
<version>2.2</version>
|
|
<configuration>
|
|
<path>${quickstart.web.context.path}</path>
|
|
<port>${quickstart.web.port}</port>
|
|
<uriEncoding>utf-8</uriEncoding>
|
|
<warSourceDirectory>${basedir}/target/deploy</warSourceDirectory>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |