pom.xml 7.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<?xml version="1.0" encoding="UTF-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
  ~
  ~     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">
21 22 23
    <parent>
        <artifactId>optional-reporter-plugins</artifactId>
        <groupId>org.apache.skywalking</groupId>
K
kezhenxu94 已提交
24
        <version>8.4.0.1</version>
25 26 27 28 29 30 31 32 33 34
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>kafka-reporter-plugin</artifactId>
    <packaging>jar</packaging>

    <dependencies>
        <dependency>
            <groupId>org.apache.kafka</groupId>
            <artifactId>kafka-clients</artifactId>
35
            <version>${kafka-clients.version}</version>
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 94 95 96 97 98 99 100 101 102 103 104 105
        </dependency>
    </dependencies>


    <build>
        <plugins>
            <plugin>
                <artifactId>maven-shade-plugin</artifactId>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>shade</goal>
                        </goals>
                        <configuration>
                            <shadedArtifactAttached>true</shadedArtifactAttached>
                            <createDependencyReducedPom>true</createDependencyReducedPom>
                            <createSourcesJar>true</createSourcesJar>
                            <shadeSourcesContent>true</shadeSourcesContent>
                            <relocations>
                                <relocation>
                                    <pattern>org.apache.kafka</pattern>
                                    <shadedPattern>${shade.package}/org.apache.kafka</shadedPattern>
                                </relocation>
                                <relocation>
                                    <pattern>common.message</pattern>
                                    <shadedPattern>${shade.package}/common.message</shadedPattern>
                                </relocation>
                                <relocation>
                                    <pattern>kafka</pattern>
                                    <shadedPattern>${shade.package}/kafka</shadedPattern>
                                </relocation>
                                <relocation>
                                    <pattern>org.slf4j</pattern>
                                    <shadedPattern>${shade.package}/org.slf4j</shadedPattern>
                                </relocation>
                                <relocation>
                                    <pattern>org.xerial</pattern>
                                    <shadedPattern>${shade.package}/org.xerial</shadedPattern>
                                </relocation>
                                <relocation>
                                    <pattern>net.jpountz</pattern>
                                    <shadedPattern>${shade.package}/net.jpountz</shadedPattern>
                                </relocation>
                                <relocation>
                                    <pattern>aix.ppc64</pattern>
                                    <shadedPattern>${shade.package}/aix.ppc64</shadedPattern>
                                </relocation>
                                <relocation>
                                    <pattern>com.github.luben</pattern>
                                    <shadedPattern>${shade.package}/com.github.luben</shadedPattern>
                                </relocation>
                                <relocation>
                                    <pattern>darwin</pattern>
                                    <shadedPattern>${shade.package}/darwin</shadedPattern>
                                </relocation>
                                <relocation>
                                    <pattern>include</pattern>
                                    <shadedPattern>${shade.package}/include</shadedPattern>
                                </relocation>
                                <relocation>
                                    <pattern>linux</pattern>
                                    <shadedPattern>${shade.package}/linux</shadedPattern>
                                </relocation>
                                <relocation>
                                    <pattern>win</pattern>
                                    <shadedPattern>${shade.package}/win</shadedPattern>
                                </relocation>
                            </relocations>
                            <transformers>
wu-sheng's avatar
wu-sheng 已提交
106
                                <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
                            </transformers>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <artifactId>maven-antrun-plugin</artifactId>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>run</goal>
                        </goals>
                        <configuration>
                            <tasks>
wu-sheng's avatar
wu-sheng 已提交
122
                                <taskdef resource="net/sf/antcontrib/antcontrib.properties" classpathref="maven.runtime.classpath" />
123
                                <if>
wu-sheng's avatar
wu-sheng 已提交
124
                                    <equals arg1="${project.packaging}" arg2="jar" />
125
                                    <then>
wu-sheng's avatar
wu-sheng 已提交
126 127
                                        <mkdir dir="${optional.reporter.plugins.dest.dir}" />
                                        <copy file="${project.build.directory}/${project.artifactId}-${project.version}-shaded.jar" tofile="${optional.reporter.plugins.dest.dir}/${project.artifactId}-${project.version}.jar" overwrite="true" />
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
                                    </then>
                                </if>
                            </tasks>
                        </configuration>
                    </execution>
                </executions>
                <dependencies>
                    <dependency>
                        <groupId>ant-contrib</groupId>
                        <artifactId>ant-contrib</artifactId>
                        <version>${ant-contrib.version}</version>
                        <exclusions>
                            <exclusion>
                                <groupId>ant</groupId>
                                <artifactId>ant</artifactId>
                            </exclusion>
                        </exclusions>
                    </dependency>
                    <dependency>
                        <groupId>org.apache.ant</groupId>
                        <artifactId>ant-nodeps</artifactId>
                        <version>${ant-nodeps.version}</version>
                    </dependency>
                </dependencies>
            </plugin>
        </plugins>
    </build>

</project>