forked from lioolli/pinpoint-plugin-sample
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpom.xml
93 lines (85 loc) · 3.29 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<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>
<version>2.3.0-SNAPSHOT</version>
</parent>
<artifactId>sample-pinpoint</artifactId>
<name>sample-pinpoint-projects</name>
<packaging>pom</packaging>
<properties>
<!-- frontend-plugin -->
<plugin.frontend.version>1.9.0</plugin.frontend.version>
<!-- https://nodejs.org/ko/download/releases/ -->
<plugin.frontend.node.version>v10.18.0</plugin.frontend.node.version>
<plugin.frontend.npm.version>6.13.4</plugin.frontend.npm.version>
<plugin.frontend.node.install.dir>/node_install/node-${plugin.frontend.node.version}</plugin.frontend.node.install.dir>
</properties>
<modules>
<module>target-lib</module>
<module>agent</module>
<module>plugins</module>
<module>plugins-it</module>
<module>collector</module>
<module>web</module>
<module>agent-testweb</module>
</modules>
<dependencies>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.navercorp.pinpoint</groupId>
<artifactId>sample-pinpoint-plugins</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.navercorp.pinpoint</groupId>
<artifactId>sample-pinpoint-plugins-assembly</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.navercorp.pinpoint</groupId>
<artifactId>plugin-sample-target</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.2</version>
<configuration>
<attachClasses>true</attachClasses>
<classesClassifier>classes</classesClassifier>
<webappDirectory>${project.build.directory}/deploy</webappDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.1.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<!-- Local server -->
<profile>
<id>local</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<env>local</env>
</properties>
</profile>
</profiles>
</project>