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="http://maven.apache.org/POM/4.0.0" | |||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 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"> | 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.3.14-1</version> | <version>1.3.14-2</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>dropwizard-kafka-1.3.14-1</tag> | <tag>dropwizard-kafka-1.3.14-2</tag> | |||
</scm> | </scm> | |||
<ciManagement> | <ciManagement> | |||
<system>Travis CI</system> | <system>Travis CI</system> | |||
<url>https://travis-ci.org/dropwizard/dropwizard-kafka</url> | <url>https://travis-ci.org/dropwizard/dropwizard-kafka</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> | |||
skipping to change at line 89 | skipping to change at line 89 | |||
<dependencyManagement> | <dependencyManagement> | |||
<dependencies> | <dependencies> | |||
<dependency> | <dependency> | |||
<groupId>io.dropwizard</groupId> | <groupId>io.dropwizard</groupId> | |||
<artifactId>dropwizard-bom</artifactId> | <artifactId>dropwizard-bom</artifactId> | |||
<version>${dropwizard.version}</version> | <version>${dropwizard.version}</version> | |||
<type>pom</type> | <type>pom</type> | |||
<scope>import</scope> | <scope>import</scope> | |||
</dependency> | </dependency> | |||
<dependency> | ||||
<groupId>org.apache.kafka</groupId> | ||||
<artifactId>kafka-clients</artifactId> | ||||
<version>${kafka-client.version}</version> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>org.apache.kafka</groupId> | ||||
<artifactId>kafka_2.11</artifactId> | ||||
<version>${kafka-client.version}</version> | ||||
</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> | |||
<artifactId>kafka-clients</artifactId> | <artifactId>kafka-clients</artifactId> | |||
<version>${kafka-client.version}</version> | ||||
<exclusions> | <exclusions> | |||
<exclusion> | <exclusion> | |||
<groupId>org.slf4j</groupId> | <groupId>org.slf4j</groupId> | |||
<artifactId>slf4j-log4j12</artifactId> | <artifactId>slf4j-log4j12</artifactId> | |||
</exclusion> | </exclusion> | |||
</exclusions> | </exclusions> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>io.zipkin.brave</groupId> | <groupId>io.zipkin.brave</groupId> | |||
<artifactId>brave-instrumentation-kafka-clients</artifactId> | <artifactId>brave-instrumentation-kafka-clients</artifactId> | |||
End of changes. 4 change blocks. | ||||
3 lines changed or deleted | 12 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/ |