jmeter.backendlistener.kafka
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.metersphere</groupId> <artifactId>jmeter.backendlistener.kafka</artifactId> <version>1.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.metersphere</groupId> <artifactId>jmeter.backendlistener.kafka</artifactId> <name>${project.artifactId}</name> <version>1.0.1</version> <description>JMeter Backend Listener Kafka is a JMeter plugin enabling you to send test results to a Kafka server. It is meant as an alternative live-monitoring tool to the built-in "InfluxDB" backend listener of JMeter.</description> <url>https://github.com/rahulsinghai/jmeter-backend-listener-kafka</url> <issueManagement> <system>GitHub</system> <url>https://github.com/rahulsinghai/jmeter-backend-listener-kafka/issues</url> </issueManagement> <inceptionYear>2019</inceptionYear> <developers> <developer> <id>rahulsinghai</id> <name>Rahul Singhai</name> <email>singrahu@gmail.com</email> <url>http://www.github.com/rahulsinghai</url> <roles> <role>project owner</role> <role>developer</role> </roles> <timezone>Europe/London</timezone> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/rahulsinghai/jmeter-backend-listener-kafka.git</connection> <developerConnection>scm:git:ssh://git@github.com/rahulsinghai/jmeter-backend-listener-kafka.git</developerConnection> <url>https://github.com/rahulsinghai/jmeter-backend-listener-kafka/tree/master</url> </scm> <organization> <name>Rahul Singhai</name> <url>https://www.cse.iitb.ac.in/~rahuls_05</url> </organization> <build> <plugins> <plugin> <artifactId>maven-release-plugin</artifactId> <version>${maven.release.plugin.version}</version> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> <autoVersionSubmodules>true</autoVersionSubmodules> <releaseProfiles>release-sign-artifacts</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> <plugin> <groupId>com.cosium.code</groupId> <artifactId>maven-git-code-format</artifactId> <version>${maven.git.code.format.plugin.version}</version> <executions> <execution> <id>install-formatter-hook</id> <goals> <goal>install-hooks</goal> </goals> </execution> <execution> <id>validate-code-format</id> <goals> <goal>validate-code-format</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven.enforcer.plugin.version}</version> <executions> <execution> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>[3.5.4,)</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration> <parallel>methods</parallel> <threadCount>10</threadCount> <forkCount>2</forkCount> <reuseForks>true</reuseForks> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>${maven.dependency.plugin.version}</version> <executions> <execution> <id>copy-dependencies</id> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <includeScope>compile</includeScope> <excludeScope>provided</excludeScope> <outputDirectory>${project.build.directory}/dependencies</outputDirectory> <overWriteReleases>false</overWriteReleases> <overWriteSnapshots>false</overWriteSnapshots> <overWriteIfNewer>true</overWriteIfNewer> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>${maven.deploy.plugin.version}</version> <executions> <execution> <id>default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>${maven.shade.plugin.version}</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <excludes> <exclude>org.apache.jmeter:*</exclude> <exclude>commons-codec:*</exclude> <exclude>commons-logging:*</exclude> <exclude>org.apache.httpcomponents:*</exclude> <exclude>net.java.dev.jna:*</exclude> </excludes> </artifactSet> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${maven.jacoco.plugin.version}</version> <executions> <execution> <id>pre-unit-test</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>post-unit-test</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> <execution> <id>jacoco-check</id> <goals> <goal>check</goal> </goals> <configuration> <rules> <rule> <element>PACKAGE</element> <limits> <limit> <counter>LINE</counter> <value>COVEREDRATIO</value> <minimum>0.25</minimum> </limit> </limits> </rule> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.apache.jmeter</groupId> <artifactId>ApacheJMeter_config</artifactId> <version>5.1.1</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>asm</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> <exclusion> <artifactId>accessors-smart</artifactId> <groupId>net.minidev</groupId> </exclusion> <exclusion> <artifactId>bsf</artifactId> <groupId>bsf</groupId> </exclusion> <exclusion> <artifactId>bsh</artifactId> <groupId>org.apache-extras.beanshell</groupId> </exclusion> <exclusion> <artifactId>bcmail-jdk15on</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> <exclusion> <artifactId>bcprov-jdk15on</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> <exclusion> <artifactId>bcpkix-jdk15on</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> <exclusion> <artifactId>dec</artifactId> <groupId>org.brotli</groupId> </exclusion> <exclusion> <artifactId>caffeine</artifactId> <groupId>com.github.ben-manes.caffeine</groupId> </exclusion> <exclusion> <artifactId>commons-codec</artifactId> <groupId>commons-codec</groupId> </exclusion> <exclusion> <artifactId>commons-collections</artifactId> <groupId>commons-collections</groupId> </exclusion> <exclusion> <artifactId>commons-dbcp2</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-io</artifactId> <groupId>commons-io</groupId> </exclusion> <exclusion> <artifactId>commons-jexl</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-jexl3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-math3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-net</artifactId> <groupId>commons-net</groupId> </exclusion> <exclusion> <artifactId>commons-pool2</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-text</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>dnsjava</artifactId> <groupId>dnsjava</groupId> </exclusion> <exclusion> <artifactId>groovy-all</artifactId> <groupId>org.codehaus.groovy</groupId> </exclusion> <exclusion> <artifactId>httpasyncclient</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>httpclient</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>httpmime</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>httpcore</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>httpcore-nio</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>oro</artifactId> <groupId>oro</groupId> </exclusion> <exclusion> <artifactId>jcharts</artifactId> <groupId>jcharts</groupId> </exclusion> <exclusion> <artifactId>rhino</artifactId> <groupId>org.mozilla</groupId> </exclusion> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> <exclusion> <artifactId>jtidy</artifactId> <groupId>net.sf.jtidy</groupId> </exclusion> <exclusion> <artifactId>tika-core</artifactId> <groupId>org.apache.tika</groupId> </exclusion> <exclusion> <artifactId>tika-parsers</artifactId> <groupId>org.apache.tika</groupId> </exclusion> <exclusion> <artifactId>xstream</artifactId> <groupId>com.thoughtworks.xstream</groupId> </exclusion> <exclusion> <artifactId>xmlpull</artifactId> <groupId>xmlpull</groupId> </exclusion> <exclusion> <artifactId>xpp3_min</artifactId> <groupId>xpp3</groupId> </exclusion> <exclusion> <artifactId>xalan</artifactId> <groupId>xalan</groupId> </exclusion> <exclusion> <artifactId>serializer</artifactId> <groupId>xalan</groupId> </exclusion> <exclusion> <artifactId>Saxon-HE</artifactId> <groupId>net.sf.saxon</groupId> </exclusion> <exclusion> <artifactId>xercesImpl</artifactId> <groupId>xerces</groupId> </exclusion> <exclusion> <artifactId>xml-apis</artifactId> <groupId>xml-apis</groupId> </exclusion> <exclusion> <artifactId>xmlgraphics-commons</artifactId> <groupId>org.apache.xmlgraphics</groupId> </exclusion> <exclusion> <artifactId>javax.activation-api</artifactId> <groupId>javax.activation</groupId> </exclusion> <exclusion> <artifactId>javax.activation</artifactId> <groupId>com.sun.activation</groupId> </exclusion> <exclusion> <artifactId>mail</artifactId> <groupId>javax.mail</groupId> </exclusion> <exclusion> <artifactId>geronimo-jms_1.1_spec</artifactId> <groupId>org.apache.geronimo.specs</groupId> </exclusion> <exclusion> <artifactId>json-path</artifactId> <groupId>com.jayway.jsonpath</groupId> </exclusion> <exclusion> <artifactId>json-smart</artifactId> <groupId>net.minidev</groupId> </exclusion> <exclusion> <artifactId>jsoup</artifactId> <groupId>org.jsoup</groupId> </exclusion> <exclusion> <artifactId>jodd-core</artifactId> <groupId>org.jodd</groupId> </exclusion> <exclusion> <artifactId>jodd-lagarto</artifactId> <groupId>org.jodd</groupId> </exclusion> <exclusion> <artifactId>jodd-log</artifactId> <groupId>org.jodd</groupId> </exclusion> <exclusion> <artifactId>jodd-props</artifactId> <groupId>org.jodd</groupId> </exclusion> <exclusion> <artifactId>mongo-java-driver</artifactId> <groupId>org.mongodb</groupId> </exclusion> <exclusion> <artifactId>ph-css</artifactId> <groupId>com.helger</groupId> </exclusion> <exclusion> <artifactId>ph-commons</artifactId> <groupId>com.helger</groupId> </exclusion> <exclusion> <artifactId>rsyntaxtextarea</artifactId> <groupId>com.fifesoft</groupId> </exclusion> <exclusion> <artifactId>jcl-over-slf4j</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>log4j-api</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>log4j-core</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>log4j-slf4j-impl</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>log4j-1.2-api</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>freemarker</artifactId> <groupId>org.freemarker</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.jmeter</groupId> <artifactId>ApacheJMeter_core</artifactId> <version>5.1.1</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>asm</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> <exclusion> <artifactId>accessors-smart</artifactId> <groupId>net.minidev</groupId> </exclusion> <exclusion> <artifactId>bsf</artifactId> <groupId>bsf</groupId> </exclusion> <exclusion> <artifactId>bsh</artifactId> <groupId>org.apache-extras.beanshell</groupId> </exclusion> <exclusion> <artifactId>bcmail-jdk15on</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> <exclusion> <artifactId>bcprov-jdk15on</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> <exclusion> <artifactId>bcpkix-jdk15on</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> <exclusion> <artifactId>dec</artifactId> <groupId>org.brotli</groupId> </exclusion> <exclusion> <artifactId>caffeine</artifactId> <groupId>com.github.ben-manes.caffeine</groupId> </exclusion> <exclusion> <artifactId>commons-codec</artifactId> <groupId>commons-codec</groupId> </exclusion> <exclusion> <artifactId>commons-collections</artifactId> <groupId>commons-collections</groupId> </exclusion> <exclusion> <artifactId>commons-dbcp2</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-io</artifactId> <groupId>commons-io</groupId> </exclusion> <exclusion> <artifactId>commons-jexl</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-jexl3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-math3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-net</artifactId> <groupId>commons-net</groupId> </exclusion> <exclusion> <artifactId>commons-pool2</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-text</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>dnsjava</artifactId> <groupId>dnsjava</groupId> </exclusion> <exclusion> <artifactId>groovy-all</artifactId> <groupId>org.codehaus.groovy</groupId> </exclusion> <exclusion> <artifactId>httpasyncclient</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>httpclient</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>httpmime</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>httpcore</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>httpcore-nio</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>oro</artifactId> <groupId>oro</groupId> </exclusion> <exclusion> <artifactId>jcharts</artifactId> <groupId>jcharts</groupId> </exclusion> <exclusion> <artifactId>rhino</artifactId> <groupId>org.mozilla</groupId> </exclusion> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> <exclusion> <artifactId>jtidy</artifactId> <groupId>net.sf.jtidy</groupId> </exclusion> <exclusion> <artifactId>tika-core</artifactId> <groupId>org.apache.tika</groupId> </exclusion> <exclusion> <artifactId>tika-parsers</artifactId> <groupId>org.apache.tika</groupId> </exclusion> <exclusion> <artifactId>xstream</artifactId> <groupId>com.thoughtworks.xstream</groupId> </exclusion> <exclusion> <artifactId>xmlpull</artifactId> <groupId>xmlpull</groupId> </exclusion> <exclusion> <artifactId>xpp3_min</artifactId> <groupId>xpp3</groupId> </exclusion> <exclusion> <artifactId>xalan</artifactId> <groupId>xalan</groupId> </exclusion> <exclusion> <artifactId>serializer</artifactId> <groupId>xalan</groupId> </exclusion> <exclusion> <artifactId>Saxon-HE</artifactId> <groupId>net.sf.saxon</groupId> </exclusion> <exclusion> <artifactId>xercesImpl</artifactId> <groupId>xerces</groupId> </exclusion> <exclusion> <artifactId>xml-apis</artifactId> <groupId>xml-apis</groupId> </exclusion> <exclusion> <artifactId>xmlgraphics-commons</artifactId> <groupId>org.apache.xmlgraphics</groupId> </exclusion> <exclusion> <artifactId>javax.activation-api</artifactId> <groupId>javax.activation</groupId> </exclusion> <exclusion> <artifactId>javax.activation</artifactId> <groupId>com.sun.activation</groupId> </exclusion> <exclusion> <artifactId>mail</artifactId> <groupId>javax.mail</groupId> </exclusion> <exclusion> <artifactId>geronimo-jms_1.1_spec</artifactId> <groupId>org.apache.geronimo.specs</groupId> </exclusion> <exclusion> <artifactId>json-path</artifactId> <groupId>com.jayway.jsonpath</groupId> </exclusion> <exclusion> <artifactId>json-smart</artifactId> <groupId>net.minidev</groupId> </exclusion> <exclusion> <artifactId>jsoup</artifactId> <groupId>org.jsoup</groupId> </exclusion> <exclusion> <artifactId>jodd-core</artifactId> <groupId>org.jodd</groupId> </exclusion> <exclusion> <artifactId>jodd-lagarto</artifactId> <groupId>org.jodd</groupId> </exclusion> <exclusion> <artifactId>jodd-log</artifactId> <groupId>org.jodd</groupId> </exclusion> <exclusion> <artifactId>jodd-props</artifactId> <groupId>org.jodd</groupId> </exclusion> <exclusion> <artifactId>mongo-java-driver</artifactId> <groupId>org.mongodb</groupId> </exclusion> <exclusion> <artifactId>ph-css</artifactId> <groupId>com.helger</groupId> </exclusion> <exclusion> <artifactId>ph-commons</artifactId> <groupId>com.helger</groupId> </exclusion> <exclusion> <artifactId>rsyntaxtextarea</artifactId> <groupId>com.fifesoft</groupId> </exclusion> <exclusion> <artifactId>jcl-over-slf4j</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>log4j-api</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>log4j-core</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>log4j-slf4j-impl</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>log4j-1.2-api</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>freemarker</artifactId> <groupId>org.freemarker</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.jmeter</groupId> <artifactId>ApacheJMeter_components</artifactId> <version>5.1.1</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>asm</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> <exclusion> <artifactId>accessors-smart</artifactId> <groupId>net.minidev</groupId> </exclusion> <exclusion> <artifactId>bsf</artifactId> <groupId>bsf</groupId> </exclusion> <exclusion> <artifactId>bsh</artifactId> <groupId>org.apache-extras.beanshell</groupId> </exclusion> <exclusion> <artifactId>bcmail-jdk15on</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> <exclusion> <artifactId>bcprov-jdk15on</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> <exclusion> <artifactId>bcpkix-jdk15on</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> <exclusion> <artifactId>dec</artifactId> <groupId>org.brotli</groupId> </exclusion> <exclusion> <artifactId>caffeine</artifactId> <groupId>com.github.ben-manes.caffeine</groupId> </exclusion> <exclusion> <artifactId>commons-codec</artifactId> <groupId>commons-codec</groupId> </exclusion> <exclusion> <artifactId>commons-collections</artifactId> <groupId>commons-collections</groupId> </exclusion> <exclusion> <artifactId>commons-dbcp2</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-io</artifactId> <groupId>commons-io</groupId> </exclusion> <exclusion> <artifactId>commons-jexl</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-jexl3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-math3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-net</artifactId> <groupId>commons-net</groupId> </exclusion> <exclusion> <artifactId>commons-pool2</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-text</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>dnsjava</artifactId> <groupId>dnsjava</groupId> </exclusion> <exclusion> <artifactId>groovy-all</artifactId> <groupId>org.codehaus.groovy</groupId> </exclusion> <exclusion> <artifactId>httpasyncclient</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>httpclient</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>httpmime</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>httpcore</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>httpcore-nio</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>oro</artifactId> <groupId>oro</groupId> </exclusion> <exclusion> <artifactId>jcharts</artifactId> <groupId>jcharts</groupId> </exclusion> <exclusion> <artifactId>rhino</artifactId> <groupId>org.mozilla</groupId> </exclusion> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> <exclusion> <artifactId>jtidy</artifactId> <groupId>net.sf.jtidy</groupId> </exclusion> <exclusion> <artifactId>tika-core</artifactId> <groupId>org.apache.tika</groupId> </exclusion> <exclusion> <artifactId>tika-parsers</artifactId> <groupId>org.apache.tika</groupId> </exclusion> <exclusion> <artifactId>xstream</artifactId> <groupId>com.thoughtworks.xstream</groupId> </exclusion> <exclusion> <artifactId>xmlpull</artifactId> <groupId>xmlpull</groupId> </exclusion> <exclusion> <artifactId>xpp3_min</artifactId> <groupId>xpp3</groupId> </exclusion> <exclusion> <artifactId>xalan</artifactId> <groupId>xalan</groupId> </exclusion> <exclusion> <artifactId>serializer</artifactId> <groupId>xalan</groupId> </exclusion> <exclusion> <artifactId>Saxon-HE</artifactId> <groupId>net.sf.saxon</groupId> </exclusion> <exclusion> <artifactId>xercesImpl</artifactId> <groupId>xerces</groupId> </exclusion> <exclusion> <artifactId>xml-apis</artifactId> <groupId>xml-apis</groupId> </exclusion> <exclusion> <artifactId>xmlgraphics-commons</artifactId> <groupId>org.apache.xmlgraphics</groupId> </exclusion> <exclusion> <artifactId>javax.activation-api</artifactId> <groupId>javax.activation</groupId> </exclusion> <exclusion> <artifactId>javax.activation</artifactId> <groupId>com.sun.activation</groupId> </exclusion> <exclusion> <artifactId>mail</artifactId> <groupId>javax.mail</groupId> </exclusion> <exclusion> <artifactId>geronimo-jms_1.1_spec</artifactId> <groupId>org.apache.geronimo.specs</groupId> </exclusion> <exclusion> <artifactId>json-path</artifactId> <groupId>com.jayway.jsonpath</groupId> </exclusion> <exclusion> <artifactId>json-smart</artifactId> <groupId>net.minidev</groupId> </exclusion> <exclusion> <artifactId>jsoup</artifactId> <groupId>org.jsoup</groupId> </exclusion> <exclusion> <artifactId>jodd-core</artifactId> <groupId>org.jodd</groupId> </exclusion> <exclusion> <artifactId>jodd-lagarto</artifactId> <groupId>org.jodd</groupId> </exclusion> <exclusion> <artifactId>jodd-log</artifactId> <groupId>org.jodd</groupId> </exclusion> <exclusion> <artifactId>jodd-props</artifactId> <groupId>org.jodd</groupId> </exclusion> <exclusion> <artifactId>mongo-java-driver</artifactId> <groupId>org.mongodb</groupId> </exclusion> <exclusion> <artifactId>ph-css</artifactId> <groupId>com.helger</groupId> </exclusion> <exclusion> <artifactId>ph-commons</artifactId> <groupId>com.helger</groupId> </exclusion> <exclusion> <artifactId>rsyntaxtextarea</artifactId> <groupId>com.fifesoft</groupId> </exclusion> <exclusion> <artifactId>jcl-over-slf4j</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>log4j-api</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>log4j-core</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>log4j-slf4j-impl</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>log4j-1.2-api</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>freemarker</artifactId> <groupId>org.freemarker</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.jmeter</groupId> <artifactId>jorphan</artifactId> <version>5.1.1</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>asm</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> <exclusion> <artifactId>accessors-smart</artifactId> <groupId>net.minidev</groupId> </exclusion> <exclusion> <artifactId>bsf</artifactId> <groupId>bsf</groupId> </exclusion> <exclusion> <artifactId>bsh</artifactId> <groupId>org.apache-extras.beanshell</groupId> </exclusion> <exclusion> <artifactId>bcmail-jdk15on</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> <exclusion> <artifactId>bcprov-jdk15on</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> <exclusion> <artifactId>bcpkix-jdk15on</artifactId> <groupId>org.bouncycastle</groupId> </exclusion> <exclusion> <artifactId>dec</artifactId> <groupId>org.brotli</groupId> </exclusion> <exclusion> <artifactId>caffeine</artifactId> <groupId>com.github.ben-manes.caffeine</groupId> </exclusion> <exclusion> <artifactId>commons-codec</artifactId> <groupId>commons-codec</groupId> </exclusion> <exclusion> <artifactId>commons-collections</artifactId> <groupId>commons-collections</groupId> </exclusion> <exclusion> <artifactId>commons-dbcp2</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-io</artifactId> <groupId>commons-io</groupId> </exclusion> <exclusion> <artifactId>commons-jexl</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-jexl3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-math3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-net</artifactId> <groupId>commons-net</groupId> </exclusion> <exclusion> <artifactId>commons-pool2</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-text</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>dnsjava</artifactId> <groupId>dnsjava</groupId> </exclusion> <exclusion> <artifactId>groovy-all</artifactId> <groupId>org.codehaus.groovy</groupId> </exclusion> <exclusion> <artifactId>httpasyncclient</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>httpclient</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>httpmime</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>httpcore</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>httpcore-nio</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>oro</artifactId> <groupId>oro</groupId> </exclusion> <exclusion> <artifactId>jcharts</artifactId> <groupId>jcharts</groupId> </exclusion> <exclusion> <artifactId>rhino</artifactId> <groupId>org.mozilla</groupId> </exclusion> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> <exclusion> <artifactId>jtidy</artifactId> <groupId>net.sf.jtidy</groupId> </exclusion> <exclusion> <artifactId>tika-core</artifactId> <groupId>org.apache.tika</groupId> </exclusion> <exclusion> <artifactId>tika-parsers</artifactId> <groupId>org.apache.tika</groupId> </exclusion> <exclusion> <artifactId>xstream</artifactId> <groupId>com.thoughtworks.xstream</groupId> </exclusion> <exclusion> <artifactId>xmlpull</artifactId> <groupId>xmlpull</groupId> </exclusion> <exclusion> <artifactId>xpp3_min</artifactId> <groupId>xpp3</groupId> </exclusion> <exclusion> <artifactId>xalan</artifactId> <groupId>xalan</groupId> </exclusion> <exclusion> <artifactId>serializer</artifactId> <groupId>xalan</groupId> </exclusion> <exclusion> <artifactId>Saxon-HE</artifactId> <groupId>net.sf.saxon</groupId> </exclusion> <exclusion> <artifactId>xercesImpl</artifactId> <groupId>xerces</groupId> </exclusion> <exclusion> <artifactId>xml-apis</artifactId> <groupId>xml-apis</groupId> </exclusion> <exclusion> <artifactId>xmlgraphics-commons</artifactId> <groupId>org.apache.xmlgraphics</groupId> </exclusion> <exclusion> <artifactId>javax.activation-api</artifactId> <groupId>javax.activation</groupId> </exclusion> <exclusion> <artifactId>javax.activation</artifactId> <groupId>com.sun.activation</groupId> </exclusion> <exclusion> <artifactId>mail</artifactId> <groupId>javax.mail</groupId> </exclusion> <exclusion> <artifactId>geronimo-jms_1.1_spec</artifactId> <groupId>org.apache.geronimo.specs</groupId> </exclusion> <exclusion> <artifactId>json-path</artifactId> <groupId>com.jayway.jsonpath</groupId> </exclusion> <exclusion> <artifactId>json-smart</artifactId> <groupId>net.minidev</groupId> </exclusion> <exclusion> <artifactId>jsoup</artifactId> <groupId>org.jsoup</groupId> </exclusion> <exclusion> <artifactId>jodd-core</artifactId> <groupId>org.jodd</groupId> </exclusion> <exclusion> <artifactId>jodd-lagarto</artifactId> <groupId>org.jodd</groupId> </exclusion> <exclusion> <artifactId>jodd-log</artifactId> <groupId>org.jodd</groupId> </exclusion> <exclusion> <artifactId>jodd-props</artifactId> <groupId>org.jodd</groupId> </exclusion> <exclusion> <artifactId>mongo-java-driver</artifactId> <groupId>org.mongodb</groupId> </exclusion> <exclusion> <artifactId>ph-css</artifactId> <groupId>com.helger</groupId> </exclusion> <exclusion> <artifactId>ph-commons</artifactId> <groupId>com.helger</groupId> </exclusion> <exclusion> <artifactId>rsyntaxtextarea</artifactId> <groupId>com.fifesoft</groupId> </exclusion> <exclusion> <artifactId>jcl-over-slf4j</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>log4j-api</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>log4j-core</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>log4j-slf4j-impl</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>log4j-1.2-api</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> <exclusion> <artifactId>freemarker</artifactId> <groupId>org.freemarker</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.8.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.4.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>apiguardian-api</artifactId> <groupId>org.apiguardian</groupId> </exclusion> <exclusion> <artifactId>junit-platform-engine</artifactId> <groupId>org.junit.platform</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.4.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-jupiter-params</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.jacoco</groupId> <artifactId>org.jacoco.agent</artifactId> <version>0.8.4</version> <classifier>runtime</classifier> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <repository> <id>ossrh</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <downloadUrl>https://oss.sonatype.org/content/groups/public/io/github/rahulsinghai/jmeter.backendlistener.kafka/</downloadUrl> </distributionManagement> <properties> <maven.nexus.staging.plugin.version>1.6.8</maven.nexus.staging.plugin.version> <maven.release.plugin.version>2.5.3</maven.release.plugin.version> <org.apache.jmeter.version>5.1.1</org.apache.jmeter.version> <maven.jacoco.plugin.version>0.8.4</maven.jacoco.plugin.version> <maven.source.plugin.version>3.1.0</maven.source.plugin.version> <gson.version>2.8.5</gson.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.surefire.plugin.version>3.0.0-M3</maven.surefire.plugin.version> <maven.dependency.plugin.version>3.1.1</maven.dependency.plugin.version> <maven.compiler.source>1.8</maven.compiler.source> <junit.version>5.4.2</junit.version> <maven.enforcer.plugin.version>3.0.0-M2</maven.enforcer.plugin.version> <org.apache.kafka>2.3.0</org.apache.kafka> <maven.git.code.format.plugin.version>1.24</maven.git.code.format.plugin.version> <maven.deploy.plugin.version>3.0.0-M1</maven.deploy.plugin.version> <maven.javadoc.plugin.version>3.1.0</maven.javadoc.plugin.version> <guava.version>28.0-jre</guava.version> <maven.gpg.plugin.version>1.6</maven.gpg.plugin.version> <maven.compiler.target>1.8</maven.compiler.target> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.shade.plugin.version>3.2.1</maven.shade.plugin.version> <maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version> <org.apache.commons>3.8.1</org.apache.commons> </properties> </project>