pom.xml 4.2 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">
wu-sheng's avatar
wu-sheng 已提交
21
    <parent>
22
        <artifactId>apm-protocol</artifactId>
23
        <groupId>org.apache.skywalking</groupId>
24
        <version>6.0.0-alpha</version>
wu-sheng's avatar
wu-sheng 已提交
25 26 27 28 29 30 31
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>apm-network</artifactId>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
32
        <compiler.version>1.6</compiler.version>
D
dylan 已提交
33 34
        <grpc.version>1.14.0</grpc.version>
        <netty.version>4.1.27.Final</netty.version>
35 36 37
        <netty-tcnative-boringssl-static.version>2.0.7.Final</netty-tcnative-boringssl-static.version>
        <os-maven-plugin.version>1.5.0.Final</os-maven-plugin.version>
        <protobuf-maven-plugin.version>0.5.0</protobuf-maven-plugin.version>
wu-sheng's avatar
wu-sheng 已提交
38 39 40 41 42 43 44
    </properties>

    <dependencies>
        <dependency>
            <groupId>io.grpc</groupId>
            <artifactId>grpc-netty</artifactId>
            <version>${grpc.version}</version>
wu-sheng's avatar
wu-sheng 已提交
45
            <scope>provided</scope>
wu-sheng's avatar
wu-sheng 已提交
46 47 48 49 50
        </dependency>
        <dependency>
            <groupId>io.grpc</groupId>
            <artifactId>grpc-protobuf</artifactId>
            <version>${grpc.version}</version>
wu-sheng's avatar
wu-sheng 已提交
51
            <scope>provided</scope>
wu-sheng's avatar
wu-sheng 已提交
52 53 54 55 56
        </dependency>
        <dependency>
            <groupId>io.grpc</groupId>
            <artifactId>grpc-stub</artifactId>
            <version>${grpc.version}</version>
wu-sheng's avatar
wu-sheng 已提交
57
            <scope>provided</scope>
wu-sheng's avatar
wu-sheng 已提交
58
        </dependency>
wu-sheng's avatar
wu-sheng 已提交
59 60
        <dependency>
            <groupId>io.netty</groupId>
61
            <artifactId>netty-tcnative-boringssl-static</artifactId>
62
            <version>${netty-tcnative-boringssl-static.version}</version>
wu-sheng's avatar
wu-sheng 已提交
63
            <scope>provided</scope>
wu-sheng's avatar
wu-sheng 已提交
64
        </dependency>
wu-sheng's avatar
wu-sheng 已提交
65 66 67 68 69 70 71
    </dependencies>

    <build>
        <extensions>
            <extension>
                <groupId>kr.motd.maven</groupId>
                <artifactId>os-maven-plugin</artifactId>
72
                <version>${os-maven-plugin.version}</version>
wu-sheng's avatar
wu-sheng 已提交
73 74 75 76 77 78
            </extension>
        </extensions>
        <plugins>
            <plugin>
                <groupId>org.xolstice.maven.plugins</groupId>
                <artifactId>protobuf-maven-plugin</artifactId>
79
                <version>${protobuf-maven-plugin.version}</version>
wu-sheng's avatar
wu-sheng 已提交
80 81 82 83 84 85 86 87 88
                <configuration>
                    <!--
                      The version of protoc must match protobuf-java. If you don't depend on
                      protobuf-java directly, you will be transitively depending on the
                      protobuf-java version that grpc depends on.
                    -->
                    <protocArtifact>com.google.protobuf:protoc:3.3.0:exe:${os.detected.classifier}
                    </protocArtifact>
                    <pluginId>grpc-java</pluginId>
89
                    <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.8.0:exe:${os.detected.classifier}
wu-sheng's avatar
wu-sheng 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103
                    </pluginArtifact>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>compile</goal>
                            <goal>compile-custom</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>