1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+
3
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
4
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
5
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
6
+ <modelVersion >4.0.0</modelVersion >
7
+ <parent >
8
+ <groupId >com.navercorp.pinpoint</groupId >
9
+ <artifactId >pinpoint-agent-testweb</artifactId >
10
+ <version >3.0.1-SNAPSHOT</version >
11
+ </parent >
12
+
13
+ <artifactId >pinpoint-ktor-plugin-testweb</artifactId >
14
+
15
+ <packaging >jar</packaging >
16
+
17
+ <properties >
18
+ <pinpoint .agent.jvmargument>
19
+ ${pinpoint.agent.default.jvmargument}
20
+ </pinpoint .agent.jvmargument>
21
+ <kotlin .version>2.0.0</kotlin .version>
22
+ </properties >
23
+
24
+ <dependencies >
25
+ <dependency >
26
+ <groupId >io.ktor</groupId >
27
+ <artifactId >ktor-server-status-pages</artifactId >
28
+ <version >2.3.12</version >
29
+ <scope >runtime</scope >
30
+ </dependency >
31
+ <dependency >
32
+ <groupId >io.ktor</groupId >
33
+ <artifactId >ktor-server-core-jvm</artifactId >
34
+ <version >2.3.12</version >
35
+ </dependency >
36
+ <dependency >
37
+ <groupId >io.ktor</groupId >
38
+ <artifactId >ktor-server-netty-jvm</artifactId >
39
+ <version >2.3.12</version >
40
+ </dependency >
41
+ <dependency >
42
+ <groupId >io.ktor</groupId >
43
+ <artifactId >ktor-server-config-yaml-jvm</artifactId >
44
+ <version >2.3.12</version >
45
+ <scope >runtime</scope >
46
+ </dependency >
47
+ <dependency >
48
+ <groupId >io.ktor</groupId >
49
+ <artifactId >ktor-server-tests-jvm</artifactId >
50
+ <version >2.3.12</version >
51
+ </dependency >
52
+ <!-- https://mvnrepository.com/artifact/io.ktor/ktor-client-core-jvm -->
53
+ <dependency >
54
+ <groupId >io.ktor</groupId >
55
+ <artifactId >ktor-client-core-jvm</artifactId >
56
+ <version >2.3.12</version >
57
+ </dependency >
58
+ <!-- https://mvnrepository.com/artifact/io.ktor/ktor-client-cio-jvm -->
59
+ <dependency >
60
+ <groupId >io.ktor</groupId >
61
+ <artifactId >ktor-client-cio-jvm</artifactId >
62
+ <version >2.3.12</version >
63
+ </dependency >
64
+
65
+
66
+ <dependency >
67
+ <groupId >org.jetbrains.kotlin</groupId >
68
+ <artifactId >kotlin-stdlib-jdk8</artifactId >
69
+ <version >${kotlin.version} </version >
70
+ </dependency >
71
+ <dependency >
72
+ <groupId >org.jetbrains.kotlin</groupId >
73
+ <artifactId >kotlin-test</artifactId >
74
+ <version >${kotlin.version} </version >
75
+ <scope >test</scope >
76
+ </dependency >
77
+ </dependencies >
78
+
79
+ <build >
80
+ <plugins >
81
+ <plugin >
82
+ <groupId >org.springframework.boot</groupId >
83
+ <artifactId >spring-boot-maven-plugin</artifactId >
84
+ </plugin >
85
+ <plugin >
86
+ <groupId >org.jetbrains.kotlin</groupId >
87
+ <artifactId >kotlin-maven-plugin</artifactId >
88
+ <version >${kotlin.version} </version >
89
+ <executions >
90
+ <execution >
91
+ <id >compile</id >
92
+ <phase >compile</phase >
93
+ <goals >
94
+ <goal >compile</goal >
95
+ </goals >
96
+ </execution >
97
+ <execution >
98
+ <id >test-compile</id >
99
+ <phase >test-compile</phase >
100
+ <goals >
101
+ <goal >test-compile</goal >
102
+ </goals >
103
+ </execution >
104
+ </executions >
105
+ <configuration >
106
+ <jvmTarget >1.8</jvmTarget >
107
+ </configuration >
108
+ </plugin >
109
+ </plugins >
110
+ </build >
111
+ </project >
0 commit comments