kafka-reporter-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.skywalking</groupId> <artifactId>kafka-reporter-plugin</artifactId> <version>9.4.0</version> </dependency>
<?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. ~ --> <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"> <parent> <artifactId>optional-reporter-plugins</artifactId> <groupId>org.apache.skywalking</groupId> <version>9.4.0</version> </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> <version>${kafka-clients.version}</version> </dependency> <dependency> <groupId>org.apache.skywalking</groupId> <artifactId>kafka-config-extension</artifactId> <version>${project.version}</version> </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> <artifactSet> <excludes> <exclude>org.xerial.snappy:snappy-java</exclude> <exclude>org.lz4:lz4-java</exclude> <exclude>com.github.luben:zstd-jni</exclude> </excludes> </artifactSet> <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>com.google.gson</pattern> <shadedPattern>${shade.package}.com.google.gson</shadedPattern> </relocation> </relocations> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> </transformers> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <taskdef resource="net/sf/antcontrib/antcontrib.properties" classpathref="maven.runtime.classpath" /> <if> <equals arg1="${project.packaging}" arg2="jar" /> <then> <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" /> </then> </if> </target> </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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>${maven-dependency-plugin.version}</version> <executions> <execution> <id>copy</id> <phase>package</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.xerial.snappy</groupId> <artifactId>snappy-java</artifactId> <version>1.1.7.3</version> <outputDirectory>${optional.reporter.plugins.dest.dir}</outputDirectory> </artifactItem> <artifactItem> <groupId>org.lz4</groupId> <artifactId>lz4-java</artifactId> <version>1.6.0</version> <outputDirectory>${optional.reporter.plugins.dest.dir}</outputDirectory> </artifactItem> <artifactItem> <groupId>com.github.luben</groupId> <artifactId>zstd-jni</artifactId> <version>1.4.3-1</version> <outputDirectory>${optional.reporter.plugins.dest.dir}</outputDirectory> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>