forked from confluentinc/kafka-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
84 lines (74 loc) · 2.83 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.confluent</groupId>
<artifactId>rest-utils-parent</artifactId>
<version>5.2.0-SNAPSHOT</version>
</parent>
<artifactId>kafka-rest-parent</artifactId>
<packaging>pom</packaging>
<name>kafka-rest-parent</name>
<organization>
<name>Confluent, Inc.</name>
<url>http://confluent.io</url>
</organization>
<url>http://confluent.io</url>
<description>
The Kafka REST Proxy provides a RESTful interface to a Kafka cluster, making it easy to
produce and consume messages, view the state of the cluster, and perform administrative
actions without using the native Kafka protocol or clients.
</description>
<licenses>
<license>
<name>Confluent Community License</name>
<url>http://www.confluent.io/confluent-community-license</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/confluentinc/kafka-rest.git</connection>
<developerConnection>scm:git:[email protected]:confluentinc/kafka-rest.git</developerConnection>
<url>https://github.com/confluentinc/kafka-rest</url>
<tag>HEAD</tag>
</scm>
<modules>
<module>kafka-rest</module>
<module>kafka-rest-console-scripts</module>
</modules>
<properties>
<confluent.maven.repo>http://packages.confluent.io/maven/</confluent.maven.repo>
<log4j.version>1.7.25</log4j.version>
<checkstyle.suppressions.location>checkstyle/suppressions.xml</checkstyle.suppressions.location>
</properties>
<repositories>
<repository>
<id>confluent</id>
<name>Confluent</name>
<url>${confluent.maven.repo}</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.avro</groupId>
<artifactId>avro-maven-plugin</artifactId>
<version>${avro.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${exec-maven-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>