-
Notifications
You must be signed in to change notification settings - Fork 80
/
pom.xml
80 lines (80 loc) · 3.25 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
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.jcustenborder.kafka.connect</groupId>
<artifactId>kafka-connect-parent</artifactId>
<version>2.8.0-1</version>
</parent>
<artifactId>kafka-connect-twitter</artifactId>
<version>0.3-SNAPSHOT</version>
<name>kafka-connect-twitter</name>
<url>https://github.com/jcustenborder/kafka-connect-twitter</url>
<inceptionYear>2016</inceptionYear>
<description>Kafka Connect plugin for streaming data from Twitter to Kafka.</description>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>https:/github.com/jcustenborder/kafka-connect-twitter/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>jcustenborder</id>
<name>Jeremy Custenborder</name>
<url>https://github.com/jcustenborder</url>
<roles>
<role>Committer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/jcustenborder/kafka-connect-twitter.git</connection>
<developerConnection>scm:git:[email protected]:jcustenborder/kafka-connect-twitter.git</developerConnection>
<url>https://github.com/jcustenborder/kafka-connect-twitter</url>
</scm>
<issueManagement>
<system>github</system>
<url>https://github.com/jcustenborder/kafka-connect-twitter/issues</url>
</issueManagement>
<properties>
<twitter4j.version>4.0.6</twitter4j.version>
</properties>
<dependencies>
<dependency>
<groupId>org.twitter4j</groupId>
<artifactId>twitter4j-core</artifactId>
<version>${twitter4j.version}</version>
</dependency>
<dependency>
<groupId>org.twitter4j</groupId>
<artifactId>twitter4j-stream</artifactId>
<version>${twitter4j.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-maven-plugin</artifactId>
<configuration>
<confluentControlCenterIntegration>true</confluentControlCenterIntegration>
<documentationUrl>https://jcustenborder.github.io/kafka-connect-documentation/</documentationUrl>
<componentTypes>
<componentType>source</componentType>
</componentTypes>
<tags>
<tag>Twitter</tag>
<tag>Social</tag>
</tags>
<title>Kafka Connect Twitter</title>
<supportUrl>${pom.issueManagement.url}</supportUrl>
<supportSummary>Support provided through community involvement.</supportSummary>
</configuration>
</plugin>
</plugins>
</build>
</project>