kafka-consumer-lib
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.dream11</groupId> <artifactId>kafka-consumer-lib</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.dream11</groupId> <artifactId>kafka-consumer-lib</artifactId> <version>1.0.1</version> <name>Kafka consumer library</name> <description>Low level kafka consumer library</description> <url>https://github.com/dream11/kafka-consumer-library.git</url> <properties> <slf4j.version>2.0.5</slf4j.version> <logback.version>1.4.12</logback.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <checkstyle.version>8.32</checkstyle.version> <lombok.version>1.18.24</lombok.version> <maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version> <maven.compile.version>11</maven.compile.version> <maven.compile.source>11</maven.compile.source> <maven.compile.target>11</maven.compile.target> <maven.clean.plugin.version>3.1.0</maven.clean.plugin.version> <maven.javadoc.plugin.version>3.2.0</maven.javadoc.plugin.version> <maven.surefire.plugin.version>3.0.0-M5</maven.surefire.plugin.version> <maven.failsafe.plugin.version>3.0.0-M5</maven.failsafe.plugin.version> <maven.jacoco.plugin.version>0.8.8</maven.jacoco.plugin.version> <maven.source.plugin.version>3.2.1</maven.source.plugin.version> <maven.gpg.plugin.version>3.0.1</maven.gpg.plugin.version> <maven.nexus.plugin.version>1.6.13</maven.nexus.plugin.version> <maven.checkstyle.plugin.version>3.2.0</maven.checkstyle.plugin.version> <maven.swagger.plugin.jakarta.version>2.2.6</maven.swagger.plugin.jakarta.version> <maven.dependency.plugin.version>3.1.2</maven.dependency.plugin.version> <git-code-format-maven-plugin.version>2.7</git-code-format-maven-plugin.version> <swagger.outputFileName>swagger</swagger.outputFileName> <swagger.configurationFilePath>${project.basedir}/src/test/resources/config/swagger/swagger-info.json</swagger.configurationFilePath> <swagger.outputPath>target/classes/webroot/swagger</swagger.outputPath> <resource.directory>src/test/resources</resource.directory> </properties> <dependencies> <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> <version>3.3.1</version> </dependency> <dependency> <groupId>com.datadoghq</groupId> <artifactId>java-dogstatsd-client</artifactId> <version>4.0.0</version> </dependency> <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>${logback.version}</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback.version}</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <scope>provided</scope> </dependency> <!-- https://mvnrepository.com/artifact/io.netty/netty-all --> <dependency> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> <version>4.1.49.Final</version> </dependency> </dependencies> <scm> <developerConnection>scm:git:https://github.com/dream11/kafka-consumer-library.git</developerConnection> <connection>scm:git:https://github.com/dream11/kafka-consumer-library.git</connection> <url>https://github.com/dream11/kafka-consumer-library.git</url> <tag>HEAD</tag> </scm> <licenses> <license> <name>MIT License</name> <url>https://github.com/dream11/kafka-consumer-library/raw/main/LICENSE</url> </license> </licenses> <developers> <developer> <name>Bipul Karnani</name> <email>bipul@dream11.com</email> <organization>Dream11</organization> <organizationUrl>https://www.dream11.com/</organizationUrl> </developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> <configuration> <compilerVersion>${maven.compile.version}</compilerVersion> <source>${maven.compile.source}</source> <target>${maven.compile.target}</target> <encoding>${project.build.sourceEncoding}</encoding> <useIncrementalCompilation>false</useIncrementalCompilation> </configuration> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>${maven.clean.plugin.version}</version> <configuration> <filesets> <fileset> <directory>${project.basedir}/src/main/generated</directory> </fileset> </filesets> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration> <!-- Ensures root cause ends up in the console --> <trimStackTrace>false</trimStackTrace> </configuration> </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>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> <execution> <id>pre-integration-test</id> <phase>pre-integration-test</phase> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>post-integration-test</id> <phase>post-integration-test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <!-- For Integration Tests--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>${maven.failsafe.plugin.version}</version> <executions> <execution> <id>integration-tests</id> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <configuration> <!-- workaround to https://issues.apache.org/jira/browse/SUREFIRE-1831 --> <useModulePath>false</useModulePath> <!-- Ensures root cause ends up in the console --> <trimStackTrace>false</trimStackTrace> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${maven.nexus.plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${maven.checkstyle.plugin.version}</version> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>${checkstyle.version}</version> </dependency> </dependencies> <configuration> <consoleOutput>true</consoleOutput> <violationSeverity>warning</violationSeverity> <configLocation>checkstyle.xml</configLocation> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <configuration> <noqualifier>all</noqualifier> <detectJavaApiLink>false</detectJavaApiLink> <doclint>none</doclint> </configuration> <executions> <execution> <configuration> <reportOutputDirectory>target</reportOutputDirectory> </configuration> <id>aggregate</id> <goals> <goal>aggregate</goal> </goals> <phase>verify</phase> </execution> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <phase>package</phase> </execution> </executions> </plugin> <plugin> <groupId>com.cosium.code</groupId> <!--suppress MavenModelInspection --> <artifactId>git-code-format-maven-plugin</artifactId> <!--suppress MavenModelInspection --> <version>${git-code-format-maven-plugin.version}</version> <executions> <!-- On commit, format the modified java files --> <execution> <id>install-formatter-hook</id> <goals> <goal>install-hooks</goal> </goals> </execution> <!-- On Maven verify phase, fail if any file (including unmodified) is badly formatted --> <execution> <id>validate-code-format</id> <goals> <goal>validate-code-format</goal> </goals> </execution> </executions> <configuration> <googleJavaFormatOptions> <fixImportsOnly>false</fixImportsOnly> <skipSortingImports>false</skipSortingImports> <skipRemovingUnusedImports>false</skipRemovingUnusedImports> </googleJavaFormatOptions> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.plugin.version}</version> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>