forked from HomeAdvisor/Kafdrop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding PR HomeAdvisor#34 so upgrade to 0.11.0.3 of Kafka
- Loading branch information
Neil Buesing
committed
Dec 25, 2018
1 parent
16eca46
commit c9a5354
Showing
2 changed files
with
245 additions
and
229 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,14 @@ | |
<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.homeadvisor.kafka</groupId> | ||
<groupId>com.neilbuesing.kafka</groupId> | ||
<artifactId>kafdrop</artifactId> | ||
<version>2.0.6</version> | ||
|
||
<description>For when you have a Kaf(ka) cluster to monitor</description> | ||
|
||
<properties> | ||
<spring.boot.version>1.3.6.RELEASE</spring.boot.version> | ||
<spring.boot.version>1.5.10.RELEASE</spring.boot.version> | ||
<additionalparam>-Xdoclint:none</additionalparam> | ||
<curator.version>2.10.0</curator.version> | ||
|
||
|
@@ -19,8 +19,8 @@ | |
</properties> | ||
|
||
<scm> | ||
<connection>scm:git:[email protected]:HomeAdvisor/Kafdrop.git</connection> | ||
<developerConnection>scm:git:[email protected]:HomeAdvisor/Kafdrop.git</developerConnection> | ||
<connection>scm:git:[email protected]:nbuesing/Kafdrop.git</connection> | ||
<developerConnection>scm:git:[email protected]:nbuesing/Kafdrop.git</developerConnection> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
|
@@ -67,13 +67,29 @@ | |
<dependency> | ||
<groupId>org.apache.zookeeper</groupId> | ||
<artifactId>zookeeper</artifactId> | ||
<version>3.4.8</version> | ||
<version>3.4.13</version> | ||
</dependency> | ||
<!--<dependency>--> | ||
<!--<groupId>org.apache.kafka</groupId>--> | ||
<!--<artifactId>kafka_2.9.2</artifactId>--> | ||
<!--<version>0.8.2.2</version>--> | ||
<!--</dependency>--> | ||
<dependency> | ||
<groupId>org.apache.kafka</groupId> | ||
<artifactId>kafka_2.9.2</artifactId> | ||
<version>0.8.2.2</version> | ||
<artifactId>kafka_2.11</artifactId> | ||
<version>0.11.0.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.kafka</groupId> | ||
<artifactId>kafka-clients</artifactId> | ||
<version>0.11.0.3</version> | ||
</dependency> | ||
<!--<dependency>--> | ||
<!--<groupId>org.apache.kafka</groupId>--> | ||
<!--<artifactId>kafka_2.12</artifactId>--> | ||
<!--<version>0.10.2.2</version>--> | ||
<!--</dependency>--> | ||
|
||
<dependency> | ||
<groupId>org.freemarker</groupId> | ||
<artifactId>freemarker</artifactId> | ||
|
@@ -82,7 +98,7 @@ | |
<dependency> | ||
<groupId>org.springframework.retry</groupId> | ||
<artifactId>spring-retry</artifactId> | ||
<version>1.1.3.RELEASE</version> | ||
<version>1.2.2.RELEASE</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.confluent</groupId> | ||
|
@@ -92,12 +108,7 @@ | |
<dependency> | ||
<groupId>org.apache.avro</groupId> | ||
<artifactId>avro</artifactId> | ||
<version>1.8.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.kafka</groupId> | ||
<artifactId>kafka-clients</artifactId> | ||
<version>0.10.2.2</version> | ||
<version>1.8.2</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.code.findbugs</groupId> | ||
|
@@ -121,6 +132,10 @@ | |
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-tomcat</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-freemarker</artifactId> | ||
|
Oops, something went wrong.