pom.xml | pom.xml | |||
---|---|---|---|---|
<?xml version="1.0" encoding="UTF-8"?> | <?xml version="1.0" encoding="UTF-8"?> | |||
<project | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3 | |||
xmlns="http://maven.apache.org/POM/4.0.0" | .org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/P | |||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | OM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache | ||||
.org/maven-v4_0_0.xsd"> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | |||
<groupId>io.dropwizard.modules</groupId> | <groupId>io.dropwizard.modules</groupId> | |||
<artifactId>dropwizard-kafka</artifactId> | <artifactId>dropwizard-kafka</artifactId> | |||
<version>1.6.0</version> | <version>1.6.1</version> | |||
<packaging>jar</packaging> | <packaging>jar</packaging> | |||
<name>Dropwizard Kafka</name> | <name>Dropwizard Kafka</name> | |||
<description>Provides easy integration for Dropwizard applications with A pache Kafka</description> | <description>Provides easy integration for Dropwizard applications with A pache Kafka</description> | |||
<url>https://github.com/dropwizard/dropwizard-kafka</url> | <url>https://github.com/dropwizard/dropwizard-kafka</url> | |||
<licenses> | <licenses> | |||
<license> | <license> | |||
<name>Apache 2.0</name> | <name>Apache 2.0</name> | |||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | |||
<distribution>repo</distribution> | <distribution>repo</distribution> | |||
</license> | </license> | |||
</licenses> | </licenses> | |||
<scm> | <scm> | |||
<developerConnection>scm:git:git@github.com:dropwizard/dropwizard-kafka .git</developerConnection> | <developerConnection>scm:git:git@github.com:dropwizard/dropwizard-kafka .git</developerConnection> | |||
<connection>scm:git:https://github.com/dropwizard/dropwizard-kafka.git< /connection> | <connection>scm:git:https://github.com/dropwizard/dropwizard-kafka.git< /connection> | |||
<url>https://github.com/dropwizard/dropwizard-kafka</url> | <url>https://github.com/dropwizard/dropwizard-kafka</url> | |||
<tag>HEAD</tag> | <tag>dropwizard-kafka-1.6.1</tag> | |||
</scm> | </scm> | |||
<ciManagement> | <ciManagement> | |||
<system>Travis CI</system> | <system>GitHub Actions</system> | |||
<url>https://travis-ci.org/dropwizard/dropwizard-kafka</url> | <url>https://github.com/dropwizard/dropwizard-kafka/actions</url> | |||
</ciManagement> | </ciManagement> | |||
<issueManagement> | <issueManagement> | |||
<system>GitHub Issues</system> | <system>GitHub Issues</system> | |||
<url>https://github.com/dropwizard/dropwizard-kafka/issues</url> | <url>https://github.com/dropwizard/dropwizard-kafka/issues</url> | |||
</issueManagement> | </issueManagement> | |||
<distributionManagement> | <distributionManagement> | |||
<snapshotRepository> | <snapshotRepository> | |||
<id>ossrh</id> | <id>ossrh</id> | |||
skipping to change at line 74 | skipping to change at line 71 | |||
</developers> | </developers> | |||
<properties> | <properties> | |||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncodi ng> | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncodi ng> | |||
<maven.compiler.source>1.8</maven.compiler.source> | <maven.compiler.source>1.8</maven.compiler.source> | |||
<maven.compiler.target>1.8</maven.compiler.target> | <maven.compiler.target>1.8</maven.compiler.target> | |||
<maven.compiler.showWarnings>true</maven.compiler.showWarnings> | <maven.compiler.showWarnings>true</maven.compiler.showWarnings> | |||
<maven.compiler.showDeprecation>true</maven.compiler.showDeprecation> | <maven.compiler.showDeprecation>true</maven.compiler.showDeprecation> | |||
<brave.version>5.11.2</brave.version> | <sonar.projectKey>dropwizard_dropwizard-kafka</sonar.projectKey> | |||
<dropwizard.version>2.0.8</dropwizard.version> | <sonar.organization>dropwizard</sonar.organization> | |||
<kafka-client.version>2.4.1</kafka-client.version> | <sonar.host.url>https://sonarcloud.io</sonar.host.url> | |||
<spring-kafka.version>2.4.5.RELEASE</spring-kafka.version> | ||||
<brave.version>5.13.3</brave.version> | ||||
<dropwizard.version>2.0.23</dropwizard.version> | ||||
<kafka-client.version>2.8.0</kafka-client.version> | ||||
<spring-kafka.version>2.7.5</spring-kafka.version> | ||||
</properties> | </properties> | |||
<dependencyManagement> | <dependencyManagement> | |||
<dependencies> | <dependencies> | |||
<dependency> | <dependency> | |||
<groupId>io.dropwizard</groupId> | <groupId>io.dropwizard</groupId> | |||
<artifactId>dropwizard-dependencies</artifactId> | <artifactId>dropwizard-dependencies</artifactId> | |||
<version>${dropwizard.version}</version> | <version>${dropwizard.version}</version> | |||
<type>pom</type> | <type>pom</type> | |||
<scope>import</scope> | <scope>import</scope> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>org.apache.kafka</groupId> | <groupId>org.apache.kafka</groupId> | |||
<artifactId>kafka-clients</artifactId> | <artifactId>kafka-clients</artifactId> | |||
<version>${kafka-client.version}</version> | <version>${kafka-client.version}</version> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>org.apache.kafka</groupId> | <groupId>org.apache.kafka</groupId> | |||
<artifactId>kafka_2.11</artifactId> | <artifactId>kafka-clients</artifactId> | |||
<version>${kafka-client.version}</version> | ||||
<classifier>test</classifier> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>org.apache.kafka</groupId> | ||||
<artifactId>kafka-streams</artifactId> | ||||
<version>${kafka-client.version}</version> | <version>${kafka-client.version}</version> | |||
</dependency> | </dependency> | |||
<dependency> | ||||
<groupId>org.apache.kafka</groupId> | ||||
<artifactId>kafka-streams-test-utils</artifactId> | ||||
<version>${kafka-client.version}</version> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>org.apache.kafka</groupId> | ||||
<artifactId>kafka_2.13</artifactId> | ||||
<version>${kafka-client.version}</version> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>org.apache.kafka</groupId> | ||||
<artifactId>kafka_2.13</artifactId> | ||||
<version>${kafka-client.version}</version> | ||||
<classifier>test</classifier> | ||||
</dependency> | ||||
</dependencies> | </dependencies> | |||
</dependencyManagement> | </dependencyManagement> | |||
<dependencies> | <dependencies> | |||
<dependency> | <dependency> | |||
<groupId>io.dropwizard</groupId> | <groupId>io.dropwizard</groupId> | |||
<artifactId>dropwizard-core</artifactId> | <artifactId>dropwizard-core</artifactId> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>org.apache.kafka</groupId> | <groupId>org.apache.kafka</groupId> | |||
skipping to change at line 152 | skipping to change at line 175 | |||
<version>${spring-kafka.version}</version> | <version>${spring-kafka.version}</version> | |||
<scope>test</scope> | <scope>test</scope> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>org.assertj</groupId> | <groupId>org.assertj</groupId> | |||
<artifactId>assertj-core</artifactId> | <artifactId>assertj-core</artifactId> | |||
<scope>test</scope> | <scope>test</scope> | |||
</dependency> | </dependency> | |||
</dependencies> | </dependencies> | |||
<build> | ||||
<pluginManagement> | ||||
<plugins> | ||||
<plugin> | ||||
<groupId>org.apache.maven.plugins</groupId> | ||||
<artifactId>maven-failsafe-plugin</artifactId> | ||||
<version>2.22.2</version> | ||||
</plugin> | ||||
<plugin> | ||||
<groupId>org.apache.maven.plugins</groupId> | ||||
<artifactId>maven-enforcer-plugin</artifactId> | ||||
<version>3.0.0-M3</version> | ||||
</plugin> | ||||
<plugin> | ||||
<groupId>org.sonarsource.scanner.maven</groupId> | ||||
<artifactId>sonar-maven-plugin</artifactId> | ||||
<version>3.9.0.2155</version> | ||||
</plugin> | ||||
<plugin> | ||||
<groupId>org.jacoco</groupId> | ||||
<artifactId>jacoco-maven-plugin</artifactId> | ||||
<version>0.8.7</version> | ||||
</plugin> | ||||
</plugins> | ||||
</pluginManagement> | ||||
<plugins> | ||||
<plugin> | ||||
<groupId>org.apache.maven.plugins</groupId> | ||||
<artifactId>maven-failsafe-plugin</artifactId> | ||||
<executions> | ||||
<execution> | ||||
<goals> | ||||
<goal>integration-test</goal> | ||||
<goal>verify</goal> | ||||
</goals> | ||||
</execution> | ||||
</executions> | ||||
</plugin> | ||||
<plugin> | ||||
<groupId>org.apache.maven.plugins</groupId> | ||||
<artifactId>maven-enforcer-plugin</artifactId> | ||||
<executions> | ||||
<execution> | ||||
<id>enforce-rules</id> | ||||
<goals> | ||||
<goal>enforce</goal> | ||||
</goals> | ||||
<configuration> | ||||
<rules> | ||||
<requireSameVersions> | ||||
<dependencies> | ||||
<dependency>org.apache.kafka:*</dependency> | ||||
</dependencies> | ||||
</requireSameVersions> | ||||
</rules> | ||||
</configuration> | ||||
</execution> | ||||
</executions> | ||||
</plugin> | ||||
<plugin> | ||||
<groupId>org.jacoco</groupId> | ||||
<artifactId>jacoco-maven-plugin</artifactId> | ||||
<executions> | ||||
<execution> | ||||
<id>prepare-agent</id> | ||||
<goals> | ||||
<goal>prepare-agent</goal> | ||||
</goals> | ||||
</execution> | ||||
<execution> | ||||
<id>report</id> | ||||
<goals> | ||||
<goal>report</goal> | ||||
</goals> | ||||
</execution> | ||||
</executions> | ||||
</plugin> | ||||
</plugins> | ||||
</build> | ||||
<profiles> | <profiles> | |||
<profile> | <profile> | |||
<id>release</id> | <id>release</id> | |||
<activation> | <activation> | |||
<property> | <property> | |||
<name>performRelease</name> | <name>performRelease</name> | |||
<value>true</value> | <value>true</value> | |||
</property> | </property> | |||
</activation> | </activation> | |||
<properties> | <properties> | |||
<maven.compiler.optimize>true</maven.compiler.optimize> | <maven.compiler.optimize>true</maven.compiler.optimize> | |||
<gpg.keyname>EDA86E9FB607B5FC9223FB767D4868B53E31E7AD</gpg.keyname> | <gpg.keyname>EDA86E9FB607B5FC9223FB767D4868B53E31E7AD</gpg.keyname> | |||
</properties> | </properties> | |||
<build> | <build> | |||
<pluginManagement> | ||||
<plugins> | ||||
<plugin> | ||||
<groupId>org.apache.maven.plugins</groupId> | ||||
<artifactId>maven-failsafe-plugin</artifactId> | ||||
<version>2.22.2</version> | ||||
</plugin> | ||||
</plugins> | ||||
</pluginManagement> | ||||
<plugins> | <plugins> | |||
<plugin> | <plugin> | |||
<groupId>org.apache.maven.plugins</groupId> | <groupId>org.apache.maven.plugins</groupId> | |||
<artifactId>maven-source-plugin</artifactId> | <artifactId>maven-source-plugin</artifactId> | |||
<executions> | <executions> | |||
<execution> | <execution> | |||
<id>attach-sources</id> | <id>attach-sources</id> | |||
<goals> | <goals> | |||
<goal>jar-no-fork</goal> | <goal>jar-no-fork</goal> | |||
</goals> | </goals> | |||
skipping to change at line 214 | skipping to change at line 309 | |||
<plugin> | <plugin> | |||
<groupId>org.apache.maven.plugins</groupId> | <groupId>org.apache.maven.plugins</groupId> | |||
<artifactId>maven-gpg-plugin</artifactId> | <artifactId>maven-gpg-plugin</artifactId> | |||
<executions> | <executions> | |||
<execution> | <execution> | |||
<id>sign-artifacts</id> | <id>sign-artifacts</id> | |||
<phase>verify</phase> | <phase>verify</phase> | |||
<goals> | <goals> | |||
<goal>sign</goal> | <goal>sign</goal> | |||
</goals> | </goals> | |||
<configuration> | ||||
<gpgArguments> | ||||
<arg>--pinentry-mode</arg> | ||||
<arg>loopback</arg> | ||||
</gpgArguments> | ||||
</configuration> | ||||
</execution> | </execution> | |||
</executions> | </executions> | |||
</plugin> | </plugin> | |||
<plugin> | <plugin> | |||
<groupId>org.sonatype.plugins</groupId> | <groupId>org.sonatype.plugins</groupId> | |||
<artifactId>nexus-staging-maven-plugin</artifactId> | <artifactId>nexus-staging-maven-plugin</artifactId> | |||
<configuration> | <configuration> | |||
<serverId>ossrh</serverId> | <serverId>ossrh</serverId> | |||
<nexusUrl>https://oss.sonatype.org/</nexusUrl> | <nexusUrl>https://oss.sonatype.org/</nexusUrl> | |||
<autoReleaseAfterClose>true</autoReleaseAfterClose> | <autoReleaseAfterClose>true</autoReleaseAfterClose> | |||
skipping to change at line 235 | skipping to change at line 336 | |||
<executions> | <executions> | |||
<execution> | <execution> | |||
<id>nexus-deploy</id> | <id>nexus-deploy</id> | |||
<phase>deploy</phase> | <phase>deploy</phase> | |||
<goals> | <goals> | |||
<goal>deploy</goal> | <goal>deploy</goal> | |||
</goals> | </goals> | |||
</execution> | </execution> | |||
</executions> | </executions> | |||
</plugin> | </plugin> | |||
<plugin> | ||||
<groupId>org.apache.maven.plugins</groupId> | ||||
<artifactId>maven-failsafe-plugin</artifactId> | ||||
<executions> | ||||
<execution> | ||||
<goals> | ||||
<goal>integration-test</goal> | ||||
<goal>verify</goal> | ||||
</goals> | ||||
</execution> | ||||
</executions> | ||||
</plugin> | ||||
</plugins> | </plugins> | |||
</build> | </build> | |||
</profile> | </profile> | |||
</profiles> | </profiles> | |||
</project> | </project> | |||
End of changes. 11 change blocks. | ||||
35 lines changed or deleted | 125 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |