pom.xml 18.8 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>
25
    <version>5.0.0-beta2-SNAPSHOT</version>
wu-sheng's avatar
wu-sheng 已提交
26

27 28 29 30 31 32
    <parent>
        <groupId>org.apache</groupId>
        <artifactId>apache</artifactId>
        <version>19</version>
    </parent>

P
pengys5 已提交
33 34 35 36
    <developers>
        <developer>
            <name>Wu Sheng</name>
            <email>wu.sheng@foxmail.com</email>
wu-sheng's avatar
wu-sheng 已提交
37 38 39 40 41
            <url>https://github.com/wu-sheng</url>
            <roles>
                <role>Founder</role>
                <role>PMC member</role>
            </roles>
42 43 44
        </developer>
        <developer>
            <name>Peng Yongsheng</name>
彭勇升 pengys 已提交
45
            <email>8082209@qq.com</email>
46
            <url>https://github.com/peng-yongsheng</url>
wu-sheng's avatar
wu-sheng 已提交
47 48 49
            <roles>
                <role>PMC member</role>
            </roles>
50 51
        </developer>
        <developer>
wu-sheng's avatar
wu-sheng 已提交
52 53 54 55 56
            <name>Zhang Xin</name>
            <url>https://github.com/ascrutae</url>
            <roles>
                <role>PMC member</role>
            </roles>
57
        </developer>
P
pengys5 已提交
58
    </developers>
wu-sheng's avatar
wu-sheng 已提交
59

P
pengys5 已提交
60
    <modules>
H
hanahmily 已提交
61 62 63 64 65
        <module>apm-commons</module>
        <module>apm-sniffer</module>
        <module>apm-application-toolkit</module>
        <module>apm-collector</module>
        <module>apm-protocol</module>
H
hanahmily 已提交
66
        <module>apm-webapp</module>
wu-sheng's avatar
wu-sheng 已提交
67
        <module>apm-dist</module>
彭勇升 pengys 已提交
68
        <module>apm-checkstyle</module>
P
pengys5 已提交
69 70
    </modules>
    <packaging>pom</packaging>
wu-sheng's avatar
wu-sheng 已提交
71

P
pengys5 已提交
72
    <name>apm</name>
wu-sheng's avatar
wu-sheng 已提交
73
    <url>https://github.com/apache/incubator-skywalking</url>
wu-sheng's avatar
wu-sheng 已提交
74

彭勇升 pengys 已提交
75 76 77 78 79 80 81
    <scm>
        <url>https://github.com/apache/incubator-skywalking</url>
        <connection>scm:git:https://github.com/apache/incubator-skywalking.git</connection>
        <developerConnection>scm:git:https://github.com/apache/incubator-skywalking.git</developerConnection>
        <tag>HEAD</tag>
    </scm>

P
pengys5 已提交
82 83
    <issueManagement>
        <system>GitHub</system>
wu-sheng's avatar
wu-sheng 已提交
84
        <url>https://github.com/apache/incubator-skywalking/issues</url>
P
pengys5 已提交
85
    </issueManagement>
wu-sheng's avatar
wu-sheng 已提交
86

彭勇升 pengys 已提交
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
    <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>
            <post>dev@skywalking.incubator.apache.org</post>
            <subscribe>dev-subscribe@skywalking.incubator.apache.org</subscribe>
            <unsubscribe>dev-unsubscribe@skywalking.incubator.apache.org</unsubscribe>
        </mailingList>
        <mailingList>
            <name>SkyWalking Commits</name>
            <post>commits@skywalking.incubator.apache.org</post>
            <subscribe>commits-subscribe@skywalking.incubator.apache.org</subscribe>
            <unsubscribe>commits-unsubscribe@skywalking.incubator.apache.org</unsubscribe>
        </mailingList>
    </mailingLists>

P
pengys5 已提交
109 110 111 112 113 114
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <compiler.version>1.8</compiler.version>
        <scala.compiler.version>2.11.7</scala.compiler.version>
        <powermock.version>1.6.4</powermock.version>
        <docker.plugin.version>0.4.13</docker.plugin.version>
彭勇升 pengys 已提交
115
        <checkstyle.version>6.18</checkstyle.version>
P
pengys5 已提交
116
    </properties>
wu-sheng's avatar
wu-sheng 已提交
117

118
    <dependencies>
119
        <dependency>
120 121 122 123 124 125 126
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
A
ascrutae 已提交
127
            <artifactId>mockito-all</artifactId>
128 129 130
            <version>1.10.19</version>
            <scope>test</scope>
        </dependency>
A
ascrutae 已提交
131 132 133 134 135 136 137 138 139 140 141 142
        <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>
143
    </dependencies>
wu-sheng's avatar
wu-sheng 已提交
144

145 146
    <build>
        <plugins>
147
            <plugin>
148 149 150 151 152 153 154 155
                <groupId>org.apache.rat</groupId>
                <artifactId>apache-rat-plugin</artifactId>
                <version>0.12</version>
                <configuration>
                    <excludes>
                        <exclude>**/target/**</exclude>
                        <exclude>**/DISCLAIMER</exclude>
                        <exclude>**/licenses/**</exclude>
wu-sheng's avatar
wu-sheng 已提交
156
                        <exclude>**/ui-licenses/**</exclude>
157 158 159 160 161 162 163 164 165 166
                        <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 已提交
167 168 169 170 171 172 173 174 175
                        <!-- UI IDE configs -->
                        <exclude>**/skywalking-ui/.editorconfig</exclude>
                        <!-- UI Compiler configs -->
                        <exclude>**/skywalking-ui/.webpackrc.js</exclude>
                        <exclude>**/skywalking-ui/.roadhogrc.mock.js</exclude>
                        <!-- UI style check files -->
                        <exclude>**/skywalking-ui/.eslintrc</exclude>
                        <exclude>**/skywalking-ui/.stylelintrc</exclude>

176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
                        <!-- 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 已提交
193 194
                        <!-- Test cases data in JSON format -->
                        <exclude>**/src/test/resources/json/*.json</exclude>
195 196 197 198 199 200

                        <!-- 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 已提交
201
                        <!-- web UI dependencies descriptions -->
202 203 204 205
                        <exclude>skywalking-ui/package.json</exclude>
                        <exclude>skywalking-ui/package-lock.json</exclude>
                    </excludes>
                </configuration>
206
                <executions>
彭勇升 pengys 已提交
207
                    <execution>
208
                        <phase>verify</phase>
彭勇升 pengys 已提交
209
                        <goals>
210
                            <goal>check</goal>
彭勇升 pengys 已提交
211 212
                        </goals>
                    </execution>
213 214
                </executions>
            </plugin>
215
            <plugin>
216
                <groupId>org.apache.maven.plugins</groupId>
217 218
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
A
ascrutae 已提交
219 220
                    <source>${compiler.version}</source>
                    <target>${compiler.version}</target>
221 222
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
223
                <version>3.6.1</version>
224 225 226 227 228 229 230 231 232
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.4.3</version>
                <configuration>
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>
A
ascrutae 已提交
233 234 235 236 237 238 239 240
            <plugin>
                <groupId>com.spotify</groupId>
                <artifactId>docker-maven-plugin</artifactId>
                <version>${docker.plugin.version}</version>
                <configuration>
                    <skipDocker>true</skipDocker>
                </configuration>
            </plugin>
A
ascrutae 已提交
241 242 243 244 245 246 247 248
            <plugin>
                <!-- 源码插件 -->
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <!-- 发布时自动将源码同时发布的配置 -->
                <executions>
                    <execution>
                        <id>attach-sources</id>
249
                        <phase>none</phase>
A
ascrutae 已提交
250 251 252 253 254 255 256
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
                <version>2.4</version>
            </plugin>
A
ascrutae 已提交
257 258 259 260 261
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>versions-maven-plugin</artifactId>
                <version>2.3</version>
            </plugin>
wu-sheng's avatar
wu-sheng 已提交
262 263 264
            <plugin>
                <groupId>org.eluder.coveralls</groupId>
                <artifactId>coveralls-maven-plugin</artifactId>
wu-sheng's avatar
wu-sheng 已提交
265
                <version>4.1.0</version>
wu-sheng's avatar
wu-sheng 已提交
266
                <configuration>
Z
zhangxin 已提交
267 268 269
                    <sourceDirectories>
                        <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
                    </sourceDirectories>
wu-sheng's avatar
wu-sheng 已提交
270 271 272 273
                </configuration>
            </plugin>
            <!-- 覆盖率 -->
            <plugin>
274 275 276
                <groupId>org.jacoco</groupId>
                <artifactId>jacoco-maven-plugin</artifactId>
                <version>0.7.9</version>
L
lican 已提交
277 278 279 280 281
                <configuration>
                    <excludes>
                        <exclude>*MethodAccess</exclude>
                    </excludes>
                </configuration>
282 283 284 285 286 287 288 289
                <executions>
                    <execution>
                        <id>prepare-agent</id>
                        <goals>
                            <goal>prepare-agent</goal>
                        </goals>
                    </execution>
                </executions>
wu-sheng's avatar
wu-sheng 已提交
290
            </plugin>
291 292 293
            <plugin>
                <artifactId>maven-checkstyle-plugin</artifactId>
                <version>2.17</version>
彭勇升 pengys 已提交
294 295 296 297
                <dependencies>
                    <dependency>
                        <groupId>org.apache.skywalking</groupId>
                        <artifactId>apm-checkstyle</artifactId>
298
                        <version>5.0.0-beta</version>
彭勇升 pengys 已提交
299 300
                    </dependency>
                </dependencies>
301 302 303 304 305
                <executions>
                    <execution>
                        <id>validate</id>
                        <phase>validate</phase>
                        <configuration>
彭勇升 pengys 已提交
306 307
                            <configLocation>skywalking/checkStyle.xml</configLocation>
                            <headerLocation>skywalking/CHECKSTYLE_HEAD</headerLocation>
308 309
                            <encoding>UTF-8</encoding>
                            <consoleOutput>true</consoleOutput>
P
peng-yongsheng 已提交
310
                            <includeTestSourceDirectory>true</includeTestSourceDirectory>
311
                            <failsOnError>true</failsOnError>
312 313 314
                            <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 已提交
315
                            </excludes>
316 317 318 319 320 321 322
                        </configuration>
                        <goals>
                            <goal>check</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
323 324
        </plugins>
    </build>
325 326 327


    <profiles>
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
        <profile>
            <id>travis-ci-submodule</id>
            <activation>
                <activeByDefault>false</activeByDefault>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.codehaus.mojo</groupId>
                        <artifactId>exec-maven-plugin</artifactId>
                        <version>1.6.0</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>
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
        <profile>
            <!-- ojdbc is not Apache license compatible, so it must be manually downloaded first -->
            <id>install-ojdbc</id>
            <activation>
                <file>
                    <exists>${basedir}/ci-dependencies/ojdbc14-10.2.0.4.0.jar</exists>
                </file>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.codehaus.mojo</groupId>
                        <artifactId>exec-maven-plugin</artifactId>
                        <version>1.6.0</version>
                        <executions>
                            <execution>
                                <id>install-ojdbc</id>
                                <inherited>false</inherited>
                                <phase>process-resources</phase>
                                <goals>
                                    <goal>exec</goal>
                                </goals>
                                <configuration>
                                    <executable>mvn</executable>
                                    <arguments>
                                        <argument>install:install-file</argument>
                                        <argument>-Dfile=ojdbc14-10.2.0.4.0.jar</argument>
                                        <argument>-DgroupId=com.oracle</argument>
                                        <argument>-DartifactId=ojdbc14</argument>
                                        <argument>-Dversion=10.2.0.4.0</argument>
                                        <argument>-Dpackaging=jar</argument>
                                    </arguments>
                                    <workingDirectory>${project.basedir}/ci-dependencies</workingDirectory>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
        <profile>
            <!-- resin is not Apache license compatible, so it must be manually downloaded first -->
wu-sheng's avatar
wu-sheng 已提交
404
            <!-- Use resin 3.x jar file as a beacon only -->
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
            <id>install-resin-3</id>
            <activation>
                <file>
                    <exists>${basedir}/ci-dependencies/resin-3.0.9.jar</exists>
                </file>
            </activation>
        </profile>
        <profile>
            <!-- resin is not Apache license compatible, so it must be manually downloaded first -->
            <id>install-resin-4</id>
            <activation>
                <file>
                    <exists>${basedir}/ci-dependencies/resin-4.0.41.jar</exists>
                </file>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.codehaus.mojo</groupId>
                        <artifactId>exec-maven-plugin</artifactId>
                        <version>1.6.0</version>
                        <executions>
                            <execution>
                                <id>install-resin-4</id>
                                <inherited>false</inherited>
                                <phase>process-resources</phase>
                                <goals>
                                    <goal>exec</goal>
                                </goals>
                                <configuration>
                                    <executable>mvn</executable>
                                    <arguments>
                                        <argument>install:install-file</argument>
                                        <argument>-Dfile=resin-4.0.41.jar</argument>
                                        <argument>-DgroupId=com.caucho</argument>
                                        <argument>-DartifactId=resin</argument>
                                        <argument>-Dversion=4.0.41</argument>
                                        <argument>-Dpackaging=jar</argument>
                                    </arguments>
                                    <workingDirectory>${project.basedir}/ci-dependencies</workingDirectory>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
彭勇升 pengys 已提交
453

A
ascrutae 已提交
454
</project>