changebook-kafka
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.changebooks</groupId> <artifactId>changebook-kafka</artifactId> <version>1.0.2</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> <packaging>jar</packaging> <groupId>io.github.changebooks</groupId> <artifactId>changebook-kafka</artifactId> <version>1.0.2</version> <name>changebook-kafka</name> <description>Kafka</description> <url>https://github.com/changebooks/changebook-kafka</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <developers> <developer> <name>Huan Song</name> <email>changebooks@qq.com</email> <timezone>+8</timezone> <organization>changebooks technologies inc.</organization> <organizationUrl>https://github.com/changebooks</organizationUrl> </developer> </developers> <scm> <url>https://github.com/changebooks/changebook-kafka</url> <connection>scm:git:git://github.com/changebooks/changebook-kafka.git</connection> <developerConnection>scm:git:ssh://git@github.com/changebooks/changebook-kafka.git</developerConnection> </scm> <properties> <encoding>UTF-8</encoding> <java.version>1.8</java.version> <spring-kafka.version>2.8.11</spring-kafka.version> <changebook-log.version>1.0.1</changebook-log.version> <maven-plugin-compiler.version>3.10.1</maven-plugin-compiler.version> <maven-plugin-assembly.version>3.3.0</maven-plugin-assembly.version> <maven-plugin-jar.version>3.3.0</maven-plugin-jar.version> <maven-plugin-javadoc.version>3.4.1</maven-plugin-javadoc.version> <maven-plugin-source.version>3.2.1</maven-plugin-source.version> <maven-plugin-gpg.version>1.6</maven-plugin-gpg.version> <maven-plugin-nexus-staging.version>1.6.8</maven-plugin-nexus-staging.version> </properties> <dependencies> <dependency> <groupId>org.springframework.kafka</groupId> <artifactId>spring-kafka</artifactId> <version>${spring-kafka.version}</version> </dependency> <dependency> <groupId>io.github.changebooks</groupId> <artifactId>changebook-log</artifactId> <version>${changebook-log.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-plugin-compiler.version}</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <encoding>${encoding}</encoding> <showWarnings>true</showWarnings> <optimize>true</optimize> <showDeprecation>true</showDeprecation> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>${maven-plugin-assembly.version}</version> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven-plugin-jar.version}</version> <configuration> <archive> <addMavenDescriptor>false</addMavenDescriptor> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-plugin-javadoc.version}</version> <configuration> <breakiterator>true</breakiterator> <charset>${encoding}</charset> <encoding>${encoding}</encoding> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-plugin-source.version}</version> <configuration> <attach>true</attach> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-plugin-gpg.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${maven-plugin-nexus-staging.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <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> </project>