pom.xml 20.6 KB
Newer Older
wu-sheng's avatar
wu-sheng 已提交
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
wu-sheng's avatar
wu-sheng 已提交
3 4 5 6 7 8
  ~ Licensed to the Apache Software Foundation (ASF) under one or more
  ~ contributor license agreements.  See the NOTICE file distributed with
  ~ this work for additional information regarding copyright ownership.
  ~ The ASF licenses this file to You under the Apache License, Version 2.0
  ~ (the "License"); you may not use this file except in compliance with
  ~ the License.  You may obtain a copy of the License at
9 10 11 12 13 14 15 16 17 18 19
  ~
  ~     http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing, software
  ~ distributed under the License is distributed on an "AS IS" BASIS,
  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License.
  ~
  -->

wu-sheng's avatar
wu-sheng 已提交
20
<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">
P
pengys5 已提交
21
    <modelVersion>4.0.0</modelVersion>
wu-sheng's avatar
wu-sheng 已提交
22

23
    <groupId>org.apache.skywalking</groupId>
P
pengys5 已提交
24
    <artifactId>apm</artifactId>
wu-sheng's avatar
wu-sheng 已提交
25
    <version>6.2.0-SNAPSHOT</version>
wu-sheng's avatar
wu-sheng 已提交
26

27 28 29
    <parent>
        <groupId>org.apache</groupId>
        <artifactId>apache</artifactId>
wu-sheng's avatar
wu-sheng 已提交
30
        <version>21</version>
wu-sheng's avatar
wu-sheng 已提交
31
        <relativePath />
32 33
    </parent>

P
pengys5 已提交
34
    <modules>
H
hanahmily 已提交
35 36
        <module>apm-commons</module>
        <module>apm-protocol</module>
彭勇升 pengys 已提交
37
        <module>apm-checkstyle</module>
P
pengys5 已提交
38 39
    </modules>
    <packaging>pom</packaging>
wu-sheng's avatar
wu-sheng 已提交
40

P
pengys5 已提交
41
    <name>apm</name>
42
    <url>https://github.com/apache/skywalking</url>
wu-sheng's avatar
wu-sheng 已提交
43

彭勇升 pengys 已提交
44
    <scm>
45 46 47
        <url>https://github.com/apache/skywalking</url>
        <connection>scm:git:https://github.com/apache/skywalking.git</connection>
        <developerConnection>scm:git:https://github.com/apache/skywalking.git</developerConnection>
彭勇升 pengys 已提交
48 49 50
        <tag>HEAD</tag>
    </scm>

P
pengys5 已提交
51 52
    <issueManagement>
        <system>GitHub</system>
53
        <url>https://github.com/apache/skywalking/issues</url>
P
pengys5 已提交
54
    </issueManagement>
wu-sheng's avatar
wu-sheng 已提交
55

彭勇升 pengys 已提交
56 57 58 59 60 61 62 63 64 65
    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
        </license>
    </licenses>

    <mailingLists>
        <mailingList>
            <name>SkyWalking Developer List</name>
66 67 68
            <post>dev@skywalking.apache.org</post>
            <subscribe>dev-subscribe@skywalking.apache.org</subscribe>
            <unsubscribe>dev-unsubscribe@skywalking.apache.org</unsubscribe>
彭勇升 pengys 已提交
69 70 71
        </mailingList>
        <mailingList>
            <name>SkyWalking Commits</name>
72 73 74
            <post>commits@skywalking.apache.org</post>
            <subscribe>commits-subscribe@skywalking.apache.org</subscribe>
            <unsubscribe>commits-unsubscribe@skywalking.apache.org</unsubscribe>
彭勇升 pengys 已提交
75 76 77
        </mailingList>
    </mailingLists>

78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
    <profiles>
        <profile>
            <id>agent</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <modules>
                <module>apm-sniffer</module>
                <module>apm-application-toolkit</module>
            </modules>
        </profile>
        <profile>
            <id>backend</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <modules>
                <module>oap-server</module>
            </modules>
        </profile>
        <profile>
            <id>ui</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <modules>
                <module>apm-webapp</module>
            </modules>
        </profile>
        <profile>
            <id>dist</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <modules>
                <module>apm-dist</module>
            </modules>
        </profile>
wu-sheng's avatar
wu-sheng 已提交
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
        <profile>
            <id>all</id>
            <activation>
                <activeByDefault>false</activeByDefault>
            </activation>
            <modules>
                <module>apm-sniffer</module>
                <module>apm-application-toolkit</module>
                <module>oap-server</module>
                <module>apm-webapp</module>
                <module>apm-dist</module>
            </modules>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.codehaus.mojo</groupId>
                        <artifactId>exec-maven-plugin</artifactId>
                        <version>${exec-maven-plugin.version}</version>
                        <executions>
                            <execution>
                                <id>git submodule update</id>
                                <phase>initialize</phase>
                                <inherited>false</inherited>
                                <configuration>
                                    <executable>git</executable>
                                    <arguments>
                                        <argument>submodule</argument>
                                        <argument>update</argument>
                                        <argument>--init</argument>
                                        <argument>--recursive</argument>
                                    </arguments>
                                </configuration>
                                <goals>
                                    <goal>exec</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
157 158
    </profiles>

P
pengys5 已提交
159 160 161 162
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <compiler.version>1.8</compiler.version>
        <powermock.version>1.6.4</powermock.version>
彭勇升 pengys 已提交
163
        <checkstyle.version>6.18</checkstyle.version>
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
        <junit.version>4.12</junit.version>
        <mockito-all.version>1.10.19</mockito-all.version>

        <!-- Plugin versions -->
        <docker.plugin.version>0.4.13</docker.plugin.version>
        <takari-maven-plugin.version>0.6.1</takari-maven-plugin.version>
        <exec-maven-plugin.version>1.6.0</exec-maven-plugin.version>
        <maven-antrun-plugin.version>1.8</maven-antrun-plugin.version>
        <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
        <maven-assembly-plugin.version>3.1.0</maven-assembly-plugin.version>
        <maven-failsafe-plugin.version>2.22.0</maven-failsafe-plugin.version>
        <maven-surefire-plugin.version>2.22.0</maven-surefire-plugin.version>
        <maven-jar-plugin.version>3.1.0</maven-jar-plugin.version>
        <maven-shade-plugin.version>3.1.1</maven-shade-plugin.version>
        <maven-enforcer-plugin.version>3.0.0-M2</maven-enforcer-plugin.version>
        <apache-rat-plugin.version>0.12</apache-rat-plugin.version>
        <maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
        <maven-resource-plugin.version>3.1.0</maven-resource-plugin.version>
        <maven-source-plugin.version>3.0.1</maven-source-plugin.version>
        <versions-maven-plugin.version>2.5</versions-maven-plugin.version>
        <coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
        <maven-checkstyle-plugin.version>3.0.0</maven-checkstyle-plugin.version>
186
        <jacoco-maven-plugin.version>0.8.3</jacoco-maven-plugin.version>
187
        <jmh.version>1.21</jmh.version>
P
pengys5 已提交
188
    </properties>
wu-sheng's avatar
wu-sheng 已提交
189

190
    <dependencies>
191
        <dependency>
192 193 194 195 196 197
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
A
ascrutae 已提交
198
            <artifactId>mockito-all</artifactId>
199 200
            <scope>test</scope>
        </dependency>
A
ascrutae 已提交
201 202 203 204 205 206 207 208 209 210
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-module-junit4</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-api-mockito</artifactId>
            <scope>test</scope>
        </dependency>
211 212 213 214 215 216 217 218 219 220 221 222 223

        <dependency>
            <groupId>org.openjdk.jmh</groupId>
            <artifactId>jmh-core</artifactId>
            <version>${jmh.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.openjdk.jmh</groupId>
            <artifactId>jmh-generator-annprocess</artifactId>
            <version>${jmh.version}</version>
            <scope>test</scope>
        </dependency>
224
    </dependencies>
wu-sheng's avatar
wu-sheng 已提交
225

226 227 228 229 230
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
231
                <version>${junit.version}</version>
232 233 234 235 236
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>org.mockito</groupId>
                <artifactId>mockito-all</artifactId>
237
                <version>${mockito-all.version}</version>
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>org.powermock</groupId>
                <artifactId>powermock-module-junit4</artifactId>
                <version>${powermock.version}</version>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>org.powermock</groupId>
                <artifactId>powermock-api-mockito</artifactId>
                <version>${powermock.version}</version>
                <scope>test</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

255
    <build>
256 257 258 259 260 261
        <pluginManagement>
            <plugins>
                <!-- mvn -N io.takari:maven:wrapper -Dmaven=3.5.4 -->
                <plugin>
                    <groupId>io.takari</groupId>
                    <artifactId>maven</artifactId>
262
                    <version>${takari-maven-plugin.version}</version>
263 264 265
                </plugin>
                <plugin>
                    <artifactId>maven-antrun-plugin</artifactId>
266
                    <version>${maven-antrun-plugin.version}</version>
267 268 269
                </plugin>
                <plugin>
                    <artifactId>maven-deploy-plugin</artifactId>
270
                    <version>${maven-deploy-plugin.version}</version>
271 272 273
                </plugin>
                <plugin>
                    <artifactId>maven-assembly-plugin</artifactId>
274
                    <version>${maven-assembly-plugin.version}</version>
275 276 277
                </plugin>
                <plugin>
                    <artifactId>maven-failsafe-plugin</artifactId>
278
                    <version>${maven-failsafe-plugin.version}</version>
279 280 281
                </plugin>
                <plugin>
                    <artifactId>maven-surefire-plugin</artifactId>
282
                    <version>${maven-surefire-plugin.version}</version>
283 284 285
                </plugin>
                <plugin>
                    <artifactId>maven-jar-plugin</artifactId>
286
                    <version>${maven-jar-plugin.version}</version>
287 288 289
                </plugin>
                <plugin>
                    <artifactId>maven-shade-plugin</artifactId>
290
                    <version>${maven-shade-plugin.version}</version>
291 292 293
                </plugin>
            </plugins>
        </pluginManagement>
294
        <plugins>
295 296
            <plugin>
                <artifactId>maven-enforcer-plugin</artifactId>
297
                <version>${maven-enforcer-plugin.version}</version>
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
                <executions>
                    <execution>
                        <id>enforce-java</id>
                        <goals>
                            <goal>enforce</goal>
                        </goals>
                        <configuration>
                            <rules>
                                <requireJavaVersion>
                                    <!-- Build has not yet been updated for Java 9+ -->
                                    <version>[1.8,9)</version>
                                </requireJavaVersion>
                            </rules>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
315
            <plugin>
316 317
                <groupId>org.apache.rat</groupId>
                <artifactId>apache-rat-plugin</artifactId>
318
                <version>${apache-rat-plugin.version}</version>
319 320 321 322
                <configuration>
                    <excludes>
                        <exclude>**/target/**</exclude>
                        <exclude>**/licenses/**</exclude>
wu-sheng's avatar
wu-sheng 已提交
323
                        <exclude>**/ui-licenses/**</exclude>
324 325 326 327 328 329 330 331 332 333
                        <exclude>**/codeStyle.xml</exclude>

                        <!-- IDE files -->
                        <exclude>**/*.iml</exclude>
                        <exclude>**/.idea/**</exclude>
                        <exclude>**/*.classpath</exclude>
                        <exclude>**/.project</exclude>
                        <exclude>**/.settings/**</exclude>
                        <exclude>**/dependency-reduced-pom.xml</exclude>

wu-sheng's avatar
wu-sheng 已提交
334 335
                        <!-- UI IDE configs -->
                        <exclude>**/skywalking-ui/.editorconfig</exclude>
336 337
                        <!-- UI ignore -->
                        <exclude>**/skywalking-ui/.browserslistrc</exclude>
wu-sheng's avatar
wu-sheng 已提交
338

339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
                        <!-- git files -->
                        <exclude>**/.gitignore</exclude>
                        <exclude>**/.gitmodules</exclude>
                        <exclude>**/.git/**</exclude>

                        <!-- CI files -->
                        <exclude>**/.travis.yml</exclude>

                        <!-- GitHub files -->
                        <exclude>**/.github/**</exclude>

                        <!-- document files -->
                        <exclude>**/*.md</exclude>
                        <excldue>**/*.MD</excldue>
                        <exclude>**/*.txt</exclude>
                        <exclude>**/docs/**</exclude>

wu-sheng's avatar
wu-sheng 已提交
356 357
                        <!-- Test cases data in JSON format -->
                        <exclude>**/src/test/resources/json/*.json</exclude>
358 359 360 361 362 363

                        <!-- front end libary and generated files -->
                        <exclude>**/skywalking-ui/node_modules/**</exclude>
                        <exclude>**/skywalking-ui/node/**</exclude>
                        <exclude>**/skywalking-ui/dist/**</exclude>

wu-sheng's avatar
wu-sheng 已提交
364
                        <!-- web UI dependencies descriptions -->
365 366
                        <exclude>skywalking-ui/package.json</exclude>
                        <exclude>skywalking-ui/package-lock.json</exclude>
wu-sheng's avatar
wu-sheng 已提交
367

wu-sheng's avatar
wu-sheng 已提交
368
                        <!-- Proto files of Istio, envoy, prometheus and gogoproto projects -->
369
                        <exclude>**/src/main/proto/envoy/**</exclude>
wu-sheng's avatar
wu-sheng 已提交
370 371 372 373 374
                        <exclude>**/src/main/proto/gogoproto/gogo.proto</exclude>
                        <exclude>**/src/main/proto/google/**</exclude>
                        <exclude>**/src/main/proto/istio/**</exclude>
                        <exclude>**/src/main/proto/jaeger/**</exclude>
                        <exclude>**/src/main/proto/policy/**</exclude>
375
                        <exclude>**/src/main/proto/prometheus/client_model/metrics.proto</exclude>
wu-sheng's avatar
wu-sheng 已提交
376
                        <exclude>**/src/main/proto/protoc-gen-swagger/**</exclude>
377
                        <exclude>**/src/main/proto/validate/validate.proto</exclude>
wu-sheng's avatar
wu-sheng 已提交
378 379 380 381

                        <!-- generated file from antlr -->
                        <exclude>**/src/main/antlr4/org/apache/skywalking/oal/tool/grammar/OALLexer.tokens</exclude>

382 383
                        <!-- Maven Wrapper generated files -->
                        <exclude>.mvn/wrapper/maven-wrapper.properties</exclude>
384 385
                    </excludes>
                </configuration>
386
                <executions>
彭勇升 pengys 已提交
387
                    <execution>
388
                        <phase>verify</phase>
彭勇升 pengys 已提交
389
                        <goals>
390
                            <goal>check</goal>
彭勇升 pengys 已提交
391 392
                        </goals>
                    </execution>
393 394
                </executions>
            </plugin>
395 396
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
397
                <version>${maven-compiler-plugin.version}</version>
398
                <configuration>
A
ascrutae 已提交
399 400
                    <source>${compiler.version}</source>
                    <target>${compiler.version}</target>
401 402 403 404 405
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-resources-plugin</artifactId>
406
                <version>${maven-resource-plugin.version}</version>
407 408 409 410
                <configuration>
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>
A
ascrutae 已提交
411 412 413 414 415 416 417 418
            <plugin>
                <groupId>com.spotify</groupId>
                <artifactId>docker-maven-plugin</artifactId>
                <version>${docker.plugin.version}</version>
                <configuration>
                    <skipDocker>true</skipDocker>
                </configuration>
            </plugin>
A
ascrutae 已提交
419 420 421
            <plugin>
                <!-- 源码插件 -->
                <artifactId>maven-source-plugin</artifactId>
422
                <version>${maven-source-plugin.version}</version>
A
ascrutae 已提交
423 424 425 426
                <!-- 发布时自动将源码同时发布的配置 -->
                <executions>
                    <execution>
                        <id>attach-sources</id>
427
                        <phase>none</phase>
A
ascrutae 已提交
428 429 430 431 432 433
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
wu-sheng's avatar
wu-sheng 已提交
434 435 436
            <plugin>
                <groupId>org.eluder.coveralls</groupId>
                <artifactId>coveralls-maven-plugin</artifactId>
437
                <version>${coveralls-maven-plugin.version}</version>
wu-sheng's avatar
wu-sheng 已提交
438
                <configuration>
439
                    <repoToken>xFwR2GqmxcMxV7tGEpW2NfwIrbCD4cQCS</repoToken>
Z
zhangxin 已提交
440 441 442
                    <sourceDirectories>
                        <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
                    </sourceDirectories>
wu-sheng's avatar
wu-sheng 已提交
443 444 445
                </configuration>
            </plugin>
            <plugin>
446 447
                <groupId>org.jacoco</groupId>
                <artifactId>jacoco-maven-plugin</artifactId>
448
                <version>${jacoco-maven-plugin.version}</version>
449 450 451 452 453 454 455 456
                <executions>
                    <execution>
                        <id>prepare-agent</id>
                        <goals>
                            <goal>prepare-agent</goal>
                        </goals>
                    </execution>
                </executions>
wu-sheng's avatar
wu-sheng 已提交
457
            </plugin>
458 459
            <plugin>
                <artifactId>maven-checkstyle-plugin</artifactId>
460
                <version>${maven-checkstyle-plugin.version}</version>
彭勇升 pengys 已提交
461 462 463 464
                <dependencies>
                    <dependency>
                        <groupId>org.apache.skywalking</groupId>
                        <artifactId>apm-checkstyle</artifactId>
465
                        <version>6.0.0-GA</version>
彭勇升 pengys 已提交
466
                    </dependency>
467 468 469 470 471
                    <dependency>
                        <groupId>com.puppycrawl.tools</groupId>
                        <artifactId>checkstyle</artifactId>
                        <version>8.11</version>
                    </dependency>
彭勇升 pengys 已提交
472
                </dependencies>
473 474 475 476 477
                <executions>
                    <execution>
                        <id>validate</id>
                        <phase>validate</phase>
                        <configuration>
彭勇升 pengys 已提交
478 479
                            <configLocation>skywalking/checkStyle.xml</configLocation>
                            <headerLocation>skywalking/CHECKSTYLE_HEAD</headerLocation>
480 481
                            <encoding>UTF-8</encoding>
                            <consoleOutput>true</consoleOutput>
P
peng-yongsheng 已提交
482
                            <includeTestSourceDirectory>true</includeTestSourceDirectory>
483
                            <failsOnError>true</failsOnError>
484 485 486
                            <excludes>org.apache.skywalking.apm/network/**/*.java,
                                org.apache.skywalking.apm/collector/remote/grpc/**/*.java,
                                org.apache.skywalking.apm/agent/core/context/ids/base64/*.java
wu-sheng's avatar
wu-sheng 已提交
487
                            </excludes>
488 489 490 491 492 493 494
                        </configuration>
                        <goals>
                            <goal>check</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
495 496
        </plugins>
    </build>
A
ascrutae 已提交
497
</project>